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 f20dfd2 commit 2e53a65Copy full SHA for 2e53a65
1 file changed
.github/workflows/on_release_publish.yml
@@ -244,7 +244,11 @@ jobs:
244
245
- name: Publish Docker container
246
if: github.event_name == 'release'
247
+ env:
248
+ DOCKERHUB_USER: ${{ secrets.DOCKERHUB_USER }}
249
+ DOCKERHUB_PASSWORD: ${{ secrets.DOCKERHUB_PASSWORD }}
250
run: |
251
+ echo ${DOCKERHUB_PASSWORD} | docker login -u ${DOCKERHUB_USER} --password-stdin
252
docker push ${DOCKERHUB_ORG}/${DOCKERHUB_REPO}:${VERSION}
253
docker push ${DOCKERHUB_ORG}/${DOCKERHUB_REPO}:latest
254
0 commit comments