Skip to content

Commit eb50951

Browse files
committed
fix: fix pipeline condition
1 parent 0072b88 commit eb50951

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/main.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@ jobs:
3535
build-release:
3636
needs:
3737
- plan
38-
if: ${{ fromJson(needs.plan.outputs.versionManifest) != null && github.event_name == 'release' }}
38+
if: ${{ fromJson(needs.plan.outputs.versionManifest) != null && (github.event_name == 'release' || github.event_name == 'workflow_dispatch') }}
3939
runs-on: ubuntu-latest
4040
strategy:
4141
matrix:
4242
os: [win, linux]
4343
environment: release
44-
name: Build for (${{ matrix.os }})
44+
name: Build
4545
steps:
4646
- uses: actions/checkout@v4
4747
name: Checkout

0 commit comments

Comments
 (0)