Skip to content

Commit 36b5c49

Browse files
authored
Merge pull request #75 from spowelljr/buildServerImage
CI: Build gopogh-server image in GitHub Actions
2 parents 7511214 + b790ec7 commit 36b5c49

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/image_build.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,16 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- uses: actions/checkout@v3
11-
- name: Publish to Docker Repository
11+
- name: Publish gopogh to Docker Repository
1212
uses: elgohr/Publish-Docker-Github-Action@v5
1313
with:
1414
name: medyagh/gopogh
1515
username: ${{ secrets.DOCKER_HUB_USERNAME }}
1616
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
17+
- name: Publish gopogh-server to Docker Repository
18+
uses: elgohr/Publish-Docker-Github-Action@v5
19+
with:
20+
name: medyagh/gopogh-server
21+
dockerfile: Dockerfile.server
22+
username: ${{ secrets.DOCKER_HUB_USERNAME }}
23+
password: ${{ secrets.DOCKER_HUB_PASSWORD }}

0 commit comments

Comments
 (0)