We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30c9c1b commit 324af62Copy full SHA for 324af62
.github/actions/format-version/action.yml
@@ -9,10 +9,10 @@ inputs:
9
patch:
10
description: 'Patch version to append to the formatted version.'
11
required: true
12
- commit-delta:
+ build:
13
description: 'Commit delta to append to the formatted version.'
14
15
- commit-sha:
+ sha:
16
description: 'Commit SHA to append to the formatted version.'
17
18
pre-release-tag:
.github/workflows/build.yml
@@ -71,6 +71,8 @@ jobs:
71
echo "pre-release-tag=" >> GITHUB_OUTPUT
72
else
73
branch_name='${{ github.ref_name }}'
74
+ echo "${branch_name}"
75
+ echo "${branch_name//[/]/_}"
76
echo "pre-release-tag=${branch_name//[/]/_}" >> GITHUB_OUTPUT
77
fi
78
- name: 'Format version'
0 commit comments