Skip to content
This repository was archived by the owner on Aug 29, 2025. It is now read-only.

Commit cf04d43

Browse files
workflows: Update conditional syntax for release jobs in build_release.yml
1 parent b5aee28 commit cf04d43

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build_release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ permissions: {}
1010

1111
jobs:
1212
wrapper_build:
13-
if: !github.event.inputs.release
13+
if: ${{ !github.event.inputs.release }}
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout Repository
@@ -34,7 +34,7 @@ jobs:
3434
name: powershell64-wrapper
3535
path: "powershell64.exe"
3636
release_build:
37-
if: github.event.inputs.release
37+
if: ${{ github.event.inputs.release }}
3838
runs-on: ubuntu-latest
3939
steps:
4040
- name: Checkout Repository

0 commit comments

Comments
 (0)