File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 1111 TAG : ${{ inputs.TAG }}
1212
1313jobs :
14-
1514 draft :
1615 runs-on : ubuntu-latest
1716 steps :
8079 client-build :
8180 needs : [draft]
8281 runs-on : ${{ matrix.runs_on }}
82+ continue-on-error : ${{ matrix.continue-on-error || false }}
8383 strategy :
8484 fail-fast : false
8585 matrix :
@@ -101,6 +101,7 @@ jobs:
101101
102102 # Compile the client
103103 - name : Run client for ${{matrix.arch}}
104+ continue-on-error : ${{ matrix.continue_on_error || false }}
104105 run : ./release.bash "${{ env.REGISTRY }}:${{ env.TAG }}" client-tgz
105106
106107 # Upload files to draft release
Original file line number Diff line number Diff line change 5959
6060 client-build :
6161 runs-on : ${{ matrix.runs_on }}
62+ continue-on-error : ${{ matrix.continue-on-error || false }}
6263 strategy :
6364 fail-fast : false
6465 matrix :
8687 else
8788 echo "TAG=ref-${{ github.ref_name }}" >> $GITHUB_ENV;
8889 fi
90+
8991 # Compile the client
9092 - name : Run client for ${{matrix.arch}}
93+ continue-on-error : ${{ matrix.continue-on-error || false }}
9194 run : ./release.bash "${{ env.REGISTRY }}:${{ env.TAG }}" client-tgz
95+
9296 # Push Artifacts to GitHub
9397 - uses : actions/upload-artifact@v4
9498 with :
You can’t perform that action at this time.
0 commit comments