Skip to content
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
40 changes: 10 additions & 30 deletions .github/workflows/update-main-version.yml
Original file line number Diff line number Diff line change
@@ -1,41 +1,21 @@
name: Update Main Version
run-name: Move ${{ github.event.inputs.major_version || 'latest branch tag' }} to ${{ github.event.inputs.target || github.sha }}
name: Update release version

permissions:
contents: write

on:
push:
tags:
- 'v[0-9]+.**'
workflow_dispatch:
inputs:
target:
description: The tag or reference to use
required: true
major_version:
type: choice
description: The major version to update
options:
- v1

env:
MAJOR_VERSION: 'v1'
- v*

jobs:
tag:
runs-on: ubuntu-24.04
permissions:
contents: write
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Git config
run: |
git config user.name github-actions
git config user.email github-actions@github.com
#- name: Get major version from tag name
# if: ${{ github.event_name === 'push' }}
# run: echo "MAJOR_VERSION=`echo ${GITHUB_REF#refs/*/} | cut -c1-2`" >> $GITHUB_ENV
- name: Tag new target
run: git tag -f ${{ github.event.inputs.major_version || env.MAJOR_VERSION }} ${{ github.event.inputs.target || github.sha }}
- name: Push new tag
run: git push origin ${{ github.event.inputs.major_version || env.MAJOR_VERSION }} --force
- uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Run release-tagger
uses: tj-actions/release-tagger@v4