Skip to content

Commit

Permalink
fix: gh container registry rate limits (#13554)
Browse files Browse the repository at this point in the history
  • Loading branch information
danieldietzler authored Oct 17, 2024
1 parent 274381d commit 57704ba
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,12 @@ jobs:
with:
submodules: 'recursive'

- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_READ_USERNAME }}
password: ${{ secrets.DOCKERHUB_READ_TOKEN }}

- name: Production build
if: ${{ !cancelled() }}
run: docker compose -f e2e/docker-compose.yml build
Expand All @@ -278,6 +284,12 @@ jobs:
with:
submodules: 'recursive'

- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_READ_USERNAME }}
password: ${{ secrets.DOCKERHUB_READ_TOKEN }}

- name: Setup Node
uses: actions/setup-node@v4
with:
Expand Down Expand Up @@ -320,6 +332,12 @@ jobs:
with:
submodules: 'recursive'

- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_READ_USERNAME }}
password: ${{ secrets.DOCKERHUB_READ_TOKEN }}

- name: Setup Node
uses: actions/setup-node@v4
with:
Expand Down

0 comments on commit 57704ba

Please sign in to comment.