Skip to content

Commit 3af5690

Browse files
authored
Merge pull request continuedev#4058 from continuedev/nate/fix-ci-release
fix release ci
2 parents 81b4e4f + 9537b23 commit 3af5690

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/main.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ jobs:
208208
runs-on: ubuntu-latest
209209
needs:
210210
- build
211-
if: github.event.inputs.publish_build == 'true'
211+
if: github.event_name != 'workflow_dispatch' || github.event.inputs.publish_build == 'true'
212212
permissions:
213213
contents: write
214214
steps:

.github/workflows/preview.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ jobs:
204204
runs-on: ubuntu-latest
205205
needs:
206206
- build
207-
if: github.event.inputs.publish_build == 'true'
207+
if: github.event_name != 'workflow_dispatch' || github.event.inputs.publish_build == 'true'
208208
permissions:
209209
contents: write
210210
steps:

0 commit comments

Comments
 (0)