File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 4
4
workflow_dispatch :
5
5
inputs :
6
6
tag_name :
7
- description : ' Tag name for the new release'
7
+ description : " Tag name for the new release"
8
8
required : true
9
9
10
10
permissions :
@@ -28,14 +28,14 @@ jobs:
28
28
id : get_tag
29
29
run : |
30
30
echo "old_tag_name=$(git ls-remote --tags origin | awk -F'/' '{print $3}' | grep -v '{}' | sort -V | tail -n1)" >> $GITHUB_OUTPUT
31
-
31
+
32
32
- name : print tag
33
33
id : print_tag
34
- run : |
34
+ run : |
35
35
echo "Old Tag=${{ steps.get_tag.outputs.old_tag_name }}"
36
36
echo "NEW_TAG=${{ github.event.inputs.tag_name }}" >> $GITHUB_ENV
37
37
echo "$(basename ${{ github.ref }})"
38
-
38
+
39
39
- name : Check if tag exists
40
40
id : check_tag
41
41
run : |
79
79
draft : false
80
80
files : bin/*
81
81
generate_release_notes : true
82
- name : ${{ github.event.inputs.tag_name }}
82
+ name : ${{ github.event.inputs.tag_name }}
You can’t perform that action at this time.
0 commit comments