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 d8f74d0 commit 686798aCopy full SHA for 686798a
.github/workflows/build.yml
@@ -28,6 +28,10 @@ on:
28
description: 'If the packaging step should be debugged (skips publishing)'
29
default: true
30
type: boolean
31
+ skipForumPublish:
32
+ description: 'If publishing to the forum should be skipped'
33
+ default: true
34
+ type: boolean
35
36
permissions:
37
contents: write
@@ -276,7 +280,7 @@ jobs:
276
280
tag: v${{ env.VERSION_PREFIX }}${{ env.VERSION_SUFFIX }}.${{ github.run_number }}
277
281
278
282
publish:
279
- if: inputs.workflowDebug != true && inputs.packagingDebug != true
283
+ if: inputs.workflowDebug != true && inputs.packagingDebug != true && inputs.skipForumPublish != true
284
needs: publish-github
285
runs-on: ubuntu-latest
286
steps:
0 commit comments