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.
2 parents 4186d8f + 35bf5e5 commit 4063ff8Copy full SHA for 4063ff8
.github/workflows/docker.yml
@@ -62,9 +62,10 @@ jobs:
62
LOCAL_PATH: ../wiki
63
- name: Login to Docker Hub
64
if: github.ref == 'refs/heads/master'
65
- run: >
66
- echo '${{secrets.DOCKERHUB_PASSWORD}}' | docker login --username
67
- '${{secrets.DOCKERHUB_USERNAME}}' --password-stdin
+ uses: docker/login-action@v1
+ with:
+ username: ${{secrets.DOCKERHUB_USERNAME}}
68
+ password: ${{secrets.DOCKERHUB_PASSWORD}}
69
- name: Push Images to DockerHub
70
71
run: make -C main push-all
0 commit comments