Skip to content

Commit 18080aa

Browse files
committed
Fix alignment
1 parent 6bae8d8 commit 18080aa

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ jobs:
99
steps:
1010
- name: Checkout
1111
uses: actions/checkout@v4
12-
- name: Extract Major and Minor Versions from Tag
12+
13+
- name: Extract Major and Minor Versions from Tag
1314
id: extract-version
1415
run: |
1516
TAG_NAME="${{ github.event.release.tag_name }}"
@@ -31,9 +32,10 @@ jobs:
3132
git tag -f v$MAJOR
3233
# Create or update minor version tag
3334
git tag -f v$MAJOR.$MINOR
35+
3436
- name: Push changes
3537
uses: ad-m/github-push-action@master
3638
with:
3739
github_token: ${{ secrets.GITHUB_TOKEN }}
3840
tags: true
39-
force: true
41+
force: true

0 commit comments

Comments
 (0)