Skip to content

Commit 08fb67f

Browse files
workflows: Simplify input reference in build_release.yml by removing 'github.event.' prefix
1 parent 8672772 commit 08fb67f

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
@@ -9,7 +9,7 @@ permissions: {}
99

1010
jobs:
1111
wrapper_build:
12-
if: github.event.inputs.build_type == 'ci'
12+
if: inputs.build_type == 'ci'
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout Repository
@@ -33,7 +33,7 @@ jobs:
3333
name: powershell64-wrapper
3434
path: "powershell64.exe"
3535
release_build:
36-
if: github.event.inputs.build_type == 'release'
36+
if: inputs.build_type == 'release'
3737
runs-on: ubuntu-latest
3838
steps:
3939
- name: Checkout Repository

0 commit comments

Comments
 (0)