Skip to content

Commit

Permalink
Rollback to first version with correct version tagging
Browse files Browse the repository at this point in the history
  • Loading branch information
chrismuntean committed Dec 26, 2024
1 parent 8b3bca5 commit d84c122
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
MINOR=${MINOR:-0} # Default to 0 if MINOR is missing
PATCH=${PATCH:-0} # Default to 0 if PATCH is missing
PATCH=$((PATCH + 1))
NEW_VERSION="$MAJOR.$MINOR.$PATCH"
NEW_VERSION="v$MAJOR.$MINOR.$PATCH"
echo "New Version: $NEW_VERSION"
echo "$NEW_VERSION" > VERSION
echo "new_version=$NEW_VERSION" >> $GITHUB_ENV
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ env.new_version }}
release_name: "Release ${{ env.new_version }}"
release_name: "${{ env.new_version }}"
body: "Automated release."
draft: false
prerelease: false
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.3
1.0.0

0 comments on commit d84c122

Please sign in to comment.