We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44e242f commit 87e35ecCopy full SHA for 87e35ec
.github/workflows/RocketModFix.Unturned.Redist.Matrix.yaml
@@ -28,6 +28,7 @@ jobs:
28
build:
29
name: "Build ${{ matrix.variant }}"
30
runs-on: ubuntu-22.04
31
+ continue-on-error: true
32
33
strategy:
34
matrix:
@@ -98,6 +99,12 @@ jobs:
98
99
fi
100
echo "should_run=$SHOULD_RUN" >> $GITHUB_OUTPUT
101
102
+ - name: Skip job if not needed
103
+ if: steps.check.outputs.should_run != 'true'
104
+ run: |
105
+ echo "Skipping ${{ matrix.variant }} - no changes detected or not selected for manual run"
106
+ exit 0
107
+
108
- name: Setup NuGet
109
if: steps.check.outputs.should_run == 'true'
110
uses: nuget/setup-nuget@v2
0 commit comments