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 773ecc1 commit 91ff623Copy full SHA for 91ff623
.github/workflows/nightly-builds.yml
@@ -5,6 +5,12 @@ env:
5
6
on:
7
workflow_dispatch:
8
+ inputs:
9
+ skip_tests:
10
+ description: Skip Tests
11
+ type: boolean
12
+ default: false
13
+ required: true
14
push:
15
paths-ignore:
16
- "README.md"
@@ -44,13 +50,15 @@ jobs:
44
50
version: ${{ needs.vars.outputs.version }}
45
51
46
52
tests:
53
+ if: ${{ !inputs.skip_tests }}
47
54
needs: [vars, datagen]
48
55
uses: ./.github/workflows/_run-gametests.yml
49
56
secrets: inherit
57
with:
58
59
60
publish:
61
+ if: ${{ jobs.datagen.result == 'success' }}
62
needs: [vars, tests]
63
uses: ./.github/workflows/_publish.yml
64
0 commit comments