Skip to content
This repository has been archived by the owner on Apr 16, 2024. It is now read-only.

Commit

Permalink
Add gateway push to dokerhub
Browse files Browse the repository at this point in the history
  • Loading branch information
failwiz committed Feb 8, 2024
1 parent 4a12057 commit 8483bd4
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,4 +99,23 @@ jobs:
with:
context: ./frontend/
push: true
tags: failwiz/taski_frontend:latest
tags: failwiz/taski_frontend:latest
build_gateway_and_push_to_docker_hub:
name: Push gateway Docker image to DockerHub
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to Docker
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Push to DockerHub
uses: docker/build-push-action@v4
with:
context: ./gateway/
push: true
tags: failwiz/taski_gateway:latest

0 comments on commit 8483bd4

Please sign in to comment.