File tree Expand file tree Collapse file tree 1 file changed +7
-17
lines changed
Expand file tree Collapse file tree 1 file changed +7
-17
lines changed Original file line number Diff line number Diff line change @@ -49,25 +49,15 @@ jobs:
4949 with :
5050 version : ${{ needs.vars.outputs.version }}
5151
52- # tests:
53- # if: ${{ !inputs.skip_tests }}
54- # needs: [vars, datagen]
55- # uses: ./.github/workflows/_run-gametests.yml
56- # secrets: inherit
57- # with:
58- # version: ${{ needs.vars.outputs.version }}
59-
60- # publish-after-tests:
61- # needs: [vars, tests]
62- # if: ${{ !inputs.skip_tests && needs.tests.result == 'success' }}
63- # uses: ./.github/workflows/_publish.yml
64- # secrets: inherit
65- # with:
66- # version: ${{ needs.vars.outputs.version }}
52+ tests :
53+ needs : [vars, datagen]
54+ uses : ./.github/workflows/_run-gametests.yml
55+ secrets : inherit
56+ with :
57+ version : ${{ needs.vars.outputs.version }}
6758
6859 publish :
69- needs : [vars, datagen]
70- # if: ${{ inputs.skip_tests && needs.datagen.result == 'success' }}
60+ needs : [vars, tests]
7161 uses : ./.github/workflows/_publish.yml
7262 secrets : inherit
7363 with :
You can’t perform that action at this time.
0 commit comments