Skip to content

Commit

Permalink
Solve issue with tokens docker.
Browse files Browse the repository at this point in the history
  • Loading branch information
viferga committed Nov 8, 2024
1 parent b1c3464 commit 131b6f3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/docker-hub-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ jobs:
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}

- name: Build MetaCall Docker Images
env:
Expand Down Expand Up @@ -120,8 +120,8 @@ jobs:
- name: Authenticate to Docker registry
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}

- name: Create manifest list and push
if: github.ref != 'refs/heads/develop'
Expand Down

0 comments on commit 131b6f3

Please sign in to comment.