File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -2,14 +2,14 @@ name: Build PowerShell Wrapper
2
2
on :
3
3
workflow_call :
4
4
inputs :
5
- type :
5
+ build_type :
6
6
required : true
7
7
type : string
8
8
permissions : {}
9
9
10
10
jobs :
11
11
wrapper_build :
12
- if : github.event.inputs.type == 'ci'
12
+ if : github.event.inputs.build_type == 'ci'
13
13
runs-on : ubuntu-latest
14
14
steps :
15
15
- name : Checkout Repository
33
33
name : powershell64-wrapper
34
34
path : " powershell64.exe"
35
35
release_build :
36
- if : github.event.inputs.type == 'release'
36
+ if : github.event.inputs.build_type == 'release'
37
37
runs-on : ubuntu-latest
38
38
steps :
39
39
- name : Checkout Repository
Original file line number Diff line number Diff line change 5
5
ci_run :
6
6
uses : ProjectSynchro/powershell-wrapper-for-wine/.github/workflows/build_release.yml@master
7
7
with :
8
- type : ' ci'
8
+ build_type : ' ci'
Original file line number Diff line number Diff line change 9
9
build_release :
10
10
uses : ProjectSynchro/powershell-wrapper-for-wine/.github/workflows/build_release.yml@master
11
11
with :
12
- type : ' release'
12
+ build_type : ' release'
13
13
create_release :
14
14
permissions :
15
15
contents : write
You can’t perform that action at this time.
0 commit comments