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 8bc9e64 commit 35bf5e5Copy full SHA for 35bf5e5
.github/workflows/docker.yml
@@ -55,9 +55,10 @@ jobs:
55
run: make -C main hook-all
56
- name: Login to Docker Hub
57
if: github.ref == 'refs/heads/master'
58
- run: >
59
- echo '${{secrets.DOCKERHUB_PASSWORD}}' | docker login --username
60
- '${{secrets.DOCKERHUB_USERNAME}}' --password-stdin
+ uses: docker/login-action@v1
+ with:
+ username: ${{secrets.DOCKERHUB_USERNAME}}
61
+ password: ${{secrets.DOCKERHUB_PASSWORD}}
62
- name: Push Images to DockerHub
63
64
run: make -C main push-all
0 commit comments