Skip to content

Commit

Permalink
Update create-release.yml with original
Browse files Browse the repository at this point in the history
  • Loading branch information
Infinity-chakra authored Jun 7, 2024
1 parent 1230f3f commit 6ca8130
Showing 1 changed file with 5 additions and 19 deletions.
24 changes: 5 additions & 19 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,30 +11,16 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Get latest version
id: get_version
run: |
latest_tag=$(git describe --tags --abbrev=0)
version=$(echo $latest_tag | sed 's/v//')
IFS='.' read -ra version_parts <<< "$version"
major=${version_parts[0]}
minor=${version_parts[1]}
patch=$((${version_parts[2]}+1))
new_version="$major.$minor.$patch"
echo "new_version=$new_version" >> $GITHUB_OUTPUT
- name: Create Release
uses: actions/checkout@v4

- name: Create release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: v${{ steps.get_version.outputs.new_version }}
release_name: Release ${{ steps.get_version.outputs.new_version }}
tag_name: v${{ github.run_number }}
release_name: Release ${{ github.run_number }}
body: |
This is an automated release created on push to the main branch.
draft: false
Expand Down

0 comments on commit 6ca8130

Please sign in to comment.