Skip to content

Commit

Permalink
chore: adding the chat-zeus in docker build and push workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
shawakash committed Mar 15, 2024
1 parent 454d40a commit fc09ec4
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,3 +153,21 @@ jobs:

- name: Push @paybox/mote Docker image
run: docker push shawakash/paybox-mote:${{ github.sha }}

chat_zeus_image:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build @paybox/chat-zeus Docker image
run: docker build -t shawakash/paybox-chat-zeus:${{ github.sha }} -f ./docker/chat-zeus/Dockerfile .

- name: Push @paybox/chat-zeus Docker image
run: docker push shawakash/paybox-chat-zeus:${{ github.sha }}

0 comments on commit fc09ec4

Please sign in to comment.