Skip to content

Commit 4d5e0e1

Browse files
committed
chore: 태그 추가 로직 변경
1 parent 2583130 commit 4d5e0e1

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/headver-tagging.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,9 @@ jobs:
5353
echo "::set-output name=version::$VERSION"
5454
5555
- name: Create Tag
56-
uses: rickstaa/action-create-tag@v1.7.2
57-
with:
58-
tag: ${{ env.version }}
56+
run: |
57+
TAG="v${{ steps.compute_version.outputs.version }}"
58+
echo "Creating tag: $TAG"
59+
60+
git tag $TAG
61+
git push origin $TAG

0 commit comments

Comments
 (0)