Skip to content

Commit

Permalink
Merge pull request #75 from spowelljr/buildServerImage
Browse files Browse the repository at this point in the history
CI: Build gopogh-server image in GitHub Actions
  • Loading branch information
medyagh authored Aug 11, 2023
2 parents 7511214 + b790ec7 commit 36b5c49
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/image_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,16 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Publish to Docker Repository
- name: Publish gopogh to Docker Repository
uses: elgohr/Publish-Docker-Github-Action@v5
with:
name: medyagh/gopogh
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
- name: Publish gopogh-server to Docker Repository
uses: elgohr/Publish-Docker-Github-Action@v5
with:
name: medyagh/gopogh-server
dockerfile: Dockerfile.server
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_PASSWORD }}

0 comments on commit 36b5c49

Please sign in to comment.