Skip to content

Commit

Permalink
Fix alignment
Browse files Browse the repository at this point in the history
  • Loading branch information
EyalDelarea committed Jan 7, 2025
1 parent 6bae8d8 commit 18080aa
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Extract Major and Minor Versions from Tag

- name: Extract Major and Minor Versions from Tag
id: extract-version
run: |
TAG_NAME="${{ github.event.release.tag_name }}"
Expand All @@ -31,9 +32,10 @@ jobs:
git tag -f v$MAJOR
# Create or update minor version tag
git tag -f v$MAJOR.$MINOR
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
tags: true
force: true
force: true

0 comments on commit 18080aa

Please sign in to comment.