Skip to content

Commit

Permalink
Changes the docker password to a token (#4916)
Browse files Browse the repository at this point in the history
* fix: changes the docker password to token

* fix: update docker pass for main release workflow
  • Loading branch information
FalcoXYZ authored Nov 17, 2022
1 parent 0993b17 commit 276c554
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-nethermind-docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: Logging to Docker Hub
if: success()
run: |
echo "${{ secrets.DOCKER_PASSWORD }}" | docker login --username "${{ secrets.DOCKER_USERNAME }}" --password-stdin
echo "${{ secrets.DOCKER_ACCESS_TOKEN }}" | docker login --username "${{ secrets.DOCKER_USERNAME }}" --password-stdin
- name: Building & Pushing image to docker registry (major) / trigger DAppNode Build
if: github.event.inputs.tag == steps.settings.outputs.TAG_FROM_REPO
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-nethermind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ jobs:
- name: Logging to Docker Hub
if: success()
run: |
echo "${{ secrets.DOCKER_PASSWORD }}" | docker login --username "${{ secrets.DOCKER_USERNAME }}" --password-stdin
echo "${{ secrets.DOCKER_ACCESS_TOKEN }}" | docker login --username "${{ secrets.DOCKER_USERNAME }}" --password-stdin
- name: Building & Pushing image to docker registry (major) / trigger DAppNode Build
if: ${{ !contains(github.event.inputs.tag, 'beta') && !contains(github.event.inputs.tag, 'unstable') }}
run: |
Expand Down

0 comments on commit 276c554

Please sign in to comment.