You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
shell: ash --noprofile --norc -eo pipefail {0} # Fail on any non-zero exit code, even in piped commands
@@ -167,7 +167,7 @@ jobs:
167
167
uses: docker/login-action@v3
168
168
with:
169
169
username: ${{ secrets.DOCKER_HUB_USERNAME }}
170
-
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
170
+
password: ${{ secrets.DOCKER_HUB_TOKEN }}
171
171
- name: "Pull previous images to speed up builds"
172
172
run: |
173
173
for SERVICE in ${BUILD_IMAGES}; do (docker pull ${CI_REGISTRY_IMAGE}/${SERVICE}:edge | grep -i -e 'Pulling from' -e Digest -e Status -e Error) || true; done
shell: ash --noprofile --norc -eo pipefail {0} # Fail on any non-zero exit code, even in piped commands
@@ -310,7 +310,7 @@ jobs:
310
310
uses: docker/login-action@v3
311
311
with:
312
312
username: ${{ secrets.DOCKER_HUB_USERNAME }}
313
-
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
313
+
password: ${{ secrets.DOCKER_HUB_TOKEN }}
314
314
- name: "Pull previous images to speed up builds"
315
315
run: |
316
316
for SERVICE in ${BUILD_IMAGES}; do (docker pull ${CI_REGISTRY_IMAGE}/${SERVICE}:edge | grep -i -e 'Pulling from' -e Digest -e Status -e Error) || true; done
0 commit comments