Skip to content

Commit a43c5a9

Browse files
committed
Format file
Signed-off-by: rpancham <[email protected]>
1 parent 4e4aa5f commit a43c5a9

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/create-tag-release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
workflow_dispatch:
55
inputs:
66
tag_name:
7-
description: 'Tag name for the new release'
7+
description: "Tag name for the new release"
88
required: true
99

1010
permissions:
@@ -28,14 +28,14 @@ jobs:
2828
id: get_tag
2929
run: |
3030
echo "old_tag_name=$(git ls-remote --tags origin | awk -F'/' '{print $3}' | grep -v '{}' | sort -V | tail -n1)" >> $GITHUB_OUTPUT
31-
31+
3232
- name: print tag
3333
id: print_tag
34-
run: |
34+
run: |
3535
echo "Old Tag=${{ steps.get_tag.outputs.old_tag_name }}"
3636
echo "NEW_TAG=${{ github.event.inputs.tag_name }}" >> $GITHUB_ENV
3737
echo "$(basename ${{ github.ref }})"
38-
38+
3939
- name: Check if tag exists
4040
id: check_tag
4141
run: |
@@ -79,4 +79,4 @@ jobs:
7979
draft: false
8080
files: bin/*
8181
generate_release_notes: true
82-
name: ${{ github.event.inputs.tag_name }}
82+
name: ${{ github.event.inputs.tag_name }}

0 commit comments

Comments
 (0)