1
0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2024-12-28 06:31:58 +00:00

fix: gh container registry rate limits (#13554)

This commit is contained in:
Daniel Dietzler 2024-10-17 21:17:38 +02:00 committed by GitHub
parent 274381deaa
commit 57704ba5a7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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
@ -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:
@ -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: