Skip to content

Commit 58560ff

Browse files
committed
fix!: rename version input names
1 parent e1f7348 commit 58560ff

4 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/promote.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,9 +110,9 @@ jobs:
110110
name: next release version
111111
uses: getdevopspro/github-actions/release-version@v3.0.0
112112
with:
113-
previous-version: ${{ inputs.version-previous }}
114-
next-version: ${{ inputs.version-next }}
115-
output-format: ${{ inputs.version-output-format }}
113+
version-previous: ${{ inputs.version-previous }}
114+
version-next: ${{ inputs.version-next }}
115+
version-output-format: ${{ inputs.version-output-format }}
116116

117117
- name: set version in file
118118
uses: getdevopspro/github-actions/version-file@v3.0.0

.github/workflows/pull-request.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -774,9 +774,9 @@ jobs:
774774
id: release_version
775775
uses: getdevopspro/github-actions/release-version@v3.0.0
776776
with:
777-
previous-version: ${{ inputs.version-previous }}
778-
next-version: ${{ inputs.version-next }}
779-
output-format: ${{ inputs.version-output-format }}
777+
version-previous: ${{ inputs.version-previous }}
778+
version-next: ${{ inputs.version-next }}
779+
version-output-format: ${{ inputs.version-output-format }}
780780

781781
- name: Set version in file
782782
uses: getdevopspro/github-actions/version-file@v3.0.0

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -239,9 +239,9 @@ jobs:
239239
id: release_version
240240
uses: getdevopspro/github-actions/release-version@v3.0.0
241241
with:
242-
previous-version: ${{ inputs.version-previous }}
243-
next-version: ${{ inputs.version-next }}
244-
output-format: ${{ inputs.version-output-format }}
242+
version-previous: ${{ inputs.version-previous }}
243+
version-next: ${{ inputs.version-next }}
244+
version-output-format: ${{ inputs.version-output-format }}
245245

246246
- name: Set version in file
247247
uses: getdevopspro/github-actions/version-file@v3.0.0

release-version/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ inputs:
1313
description: 'The output format of the next version'
1414
required: false
1515
default: '{{.Major}}.{{.Minor}}.{{.Patch}}'
16-
tag:
16+
version-tag:
1717
description: 'If enabled, a new tag will be created'
1818
required: false
1919
default: 'false'
@@ -31,4 +31,4 @@ runs:
3131
previous-version: ${{ inputs.version-previous }}
3232
next-version: ${{ inputs.version-next }}
3333
output-format: ${{ inputs.version-output-format }}
34-
tag: ${{ inputs.tag }}
34+
tag: ${{ inputs.version-tag }}

0 commit comments

Comments
 (0)