From 68643fcf7af5d5889549704e2ae976b38855448d Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Wed, 15 Oct 2025 12:39:26 +0700 Subject: [PATCH] Allow build without login to docker hub Signed-off-by: Andrey Sobolev --- .github/workflows/main.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5635c8ae8c4..25c7361c835 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -185,6 +185,7 @@ jobs: restore-keys: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.sha }} - name: Login to Docker Hub if: ${{ github.event.pull_request.head.repo.full_name == github.repository }} + continue-on-error: true uses: docker/login-action@v3 with: username: hardcoreeng @@ -229,12 +230,12 @@ jobs: - name: Checking for mis-matching transitive dependencies... run: node common/scripts/check-versions.js - - name: Installing... run: node common/scripts/install-run-rush.js install - name: Login to Docker Hub if: ${{ github.event.pull_request.head.repo.full_name == github.repository }} + continue-on-error: true uses: docker/login-action@v3 with: username: hardcoreeng @@ -364,6 +365,7 @@ jobs: - name: Login to Docker Hub if: ${{ github.event.pull_request.head.repo.full_name == github.repository }} + continue-on-error: true uses: docker/login-action@v3 with: username: hardcoreeng @@ -458,6 +460,7 @@ jobs: - name: Login to Docker Hub if: ${{ github.event.pull_request.head.repo.full_name == github.repository }} + continue-on-error: true uses: docker/login-action@v3 with: username: hardcoreeng @@ -538,6 +541,7 @@ jobs: - name: Login to Docker Hub if: ${{ github.event.pull_request.head.repo.full_name == github.repository }} + continue-on-error: true uses: docker/login-action@v3 with: username: hardcoreeng @@ -657,6 +661,7 @@ jobs: - name: Login to Docker Hub if: ${{ github.event.pull_request.head.repo.full_name == github.repository }} + continue-on-error: true uses: docker/login-action@v3 with: username: hardcoreeng