Skip to content

Commit 686798a

Browse files
committed
forum-only skip
1 parent d8f74d0 commit 686798a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@ on:
2828
description: 'If the packaging step should be debugged (skips publishing)'
2929
default: true
3030
type: boolean
31+
skipForumPublish:
32+
description: 'If publishing to the forum should be skipped'
33+
default: true
34+
type: boolean
3135

3236
permissions:
3337
contents: write
@@ -276,7 +280,7 @@ jobs:
276280
tag: v${{ env.VERSION_PREFIX }}${{ env.VERSION_SUFFIX }}.${{ github.run_number }}
277281

278282
publish:
279-
if: inputs.workflowDebug != true && inputs.packagingDebug != true
283+
if: inputs.workflowDebug != true && inputs.packagingDebug != true && inputs.skipForumPublish != true
280284
needs: publish-github
281285
runs-on: ubuntu-latest
282286
steps:

0 commit comments

Comments
 (0)