We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45f968a commit 4cd7604Copy full SHA for 4cd7604
.github/workflows/ci.yml
@@ -206,6 +206,13 @@ jobs:
206
docker logs piping
207
# Delete container
208
docker rm -f piping
209
+ - name: Push if branch is develop
210
+ if: github.ref == 'ref/head/develop'
211
+ run: |
212
+ set -eu
213
+ echo ${{ secrets.DOCKER_HUB_TOKEN }} | docker login -u nwtgck --password-stdin
214
+ docker tag piping-server-rust nwtgck/piping-server-rust:${{ github.ref_name }}
215
+ docker push nwtgck/piping-server-rust:${{ github.ref_name }}
216
217
release_if_tag_exits:
218
needs:
0 commit comments