Skip to content

Commit 56c1ccf

Browse files
workflows: Rename 'type' input to 'build_type' in build_release.yml and update references
1 parent aee176f commit 56c1ccf

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/build_release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ name: Build PowerShell Wrapper
22
on:
33
workflow_call:
44
inputs:
5-
type:
5+
build_type:
66
required: true
77
type: string
88
permissions: {}
99

1010
jobs:
1111
wrapper_build:
12-
if: github.event.inputs.type == 'ci'
12+
if: github.event.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.type == 'release'
36+
if: github.event.inputs.build_type == 'release'
3737
runs-on: ubuntu-latest
3838
steps:
3939
- name: Checkout Repository

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ jobs:
55
ci_run:
66
uses: ProjectSynchro/powershell-wrapper-for-wine/.github/workflows/build_release.yml@master
77
with:
8-
type: 'ci'
8+
build_type: 'ci'

.github/workflows/create_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
build_release:
1010
uses: ProjectSynchro/powershell-wrapper-for-wine/.github/workflows/build_release.yml@master
1111
with:
12-
type: 'release'
12+
build_type: 'release'
1313
create_release:
1414
permissions:
1515
contents: write

0 commit comments

Comments
 (0)