Skip to content

Commit

Permalink
Update create-release.yml for version management.
Browse files Browse the repository at this point in the history
  • Loading branch information
YSHgroup authored Jun 7, 2024
1 parent 07099ee commit fb71732
Showing 1 changed file with 19 additions and 9 deletions.
28 changes: 19 additions & 9 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,32 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v4
uses: actions/checkout@v3
with:
node-version: '20.x.x'

- name: Create release
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
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: v${{ github.run_number }}
release_name: Release ${{ github.run_number }}
tag_name: v${{ steps.get_version.outputs.new_version }}
release_name: Release ${{ steps.get_version.outputs.new_version }}
body: |
This is an automated release created on push to the main branch.
Fullcalendar example site updated.
draft: false
prerelease: false

0 comments on commit fb71732

Please sign in to comment.