Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Always point the major version tag to the latest release #230

Merged
merged 2 commits into from
Oct 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .github/workflows/update-major-version-tag.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Update Major Version Tag

on:
release:
types: [published]

jobs:
update-major-version-tag:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4

- name: Extract Major Version
id: extract_major_version
run: |
# Extract the major version part (e.g., "v2" from "v2.3.1")
echo "release_tag=${{ github.event.release.tag_name }}" >> $GITHUB_ENV
major_version=$(echo "${{ github.event.release.tag_name }}" | grep -oE "^v[0-9]+")
echo "major_version=$major_version" >> $GITHUB_ENV

- name: Update Major Version Tag
run: |
git fetch --tags
git tag -f ${{ env.major_version }} ${{ github.event.release.tag_name }}
git push origin ${{ env.major_version }} --force
Loading