Skip to content

Commit

Permalink
chore: login in early to docker to avoid rate limiting issues (#1269)
Browse files Browse the repository at this point in the history
  • Loading branch information
StarpTech authored Oct 14, 2024
1 parent 1271876 commit f528982
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/image-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,13 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

- name: Log in to Docker Container registry
uses: docker/login-action@v3
with:
registry: docker.io
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
Expand All @@ -69,13 +76,6 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Log in to Docker Container registry
uses: docker/login-action@v3
with:
registry: docker.io
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Log in to Github Container registry
uses: docker/login-action@v3
with:
Expand Down

0 comments on commit f528982

Please sign in to comment.