Tag latest and stable only after versioning
This commit is contained in:
78
.github/workflows/versioning.yml
vendored
78
.github/workflows/versioning.yml
vendored
@@ -1,6 +1,9 @@
|
||||
# Workflow for managing versioning and tagging
|
||||
# This GitHub Actions workflow handles version bumping and tag updates.
|
||||
# It can be triggered either by:
|
||||
# 1. Pushing to main branch - automatically bumps version and updates tags
|
||||
# 2. Manual dispatch - allows independent control over stable and latest tags
|
||||
---
|
||||
name: Version Bump and Tag
|
||||
name: Version and Tags
|
||||
|
||||
on: # yamllint disable-line rule:truthy
|
||||
push:
|
||||
@@ -9,34 +12,79 @@ on: # yamllint disable-line rule:truthy
|
||||
paths-ignore:
|
||||
- '**/VERSION'
|
||||
- '**/VERSION_YAML'
|
||||
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
update_stable:
|
||||
description: "Update stable tag?"
|
||||
required: true
|
||||
default: "false"
|
||||
default: false
|
||||
type: boolean
|
||||
update_latest:
|
||||
description: "Update latest tag?"
|
||||
required: true
|
||||
default: false
|
||||
type: boolean
|
||||
|
||||
jobs:
|
||||
versioning:
|
||||
version-and-tag:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: "actions/checkout@v4"
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Set up Git
|
||||
run: |
|
||||
git config user.name "GitHub Actions"
|
||||
git config user.email "actions@github.com"
|
||||
|
||||
- name: Bump Version
|
||||
run: |
|
||||
chmod +x "./versioning/bump_version.sh"
|
||||
"./versioning/bump_version.sh"
|
||||
- name: Bump version and push tag
|
||||
id: version
|
||||
uses: mathieudutour/github-tag-action@v6.1
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
release_branches: main
|
||||
default_bump: patch
|
||||
tag_prefix: ""
|
||||
dry_run: true
|
||||
|
||||
- name: Push Changes and Tags
|
||||
env:
|
||||
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
||||
- name: Update version in files
|
||||
if: steps.version.outputs.new_tag
|
||||
run: |
|
||||
git push "https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git" main
|
||||
git push "https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git" --tags
|
||||
chmod +x ./bump_version.sh
|
||||
./bump_version.sh ${{ steps.version.outputs.new_tag }}
|
||||
git add .
|
||||
git commit -m "chore: bump version to ${{ steps.version.outputs.new_tag }}"
|
||||
git push
|
||||
|
||||
- name: Create version tag
|
||||
if: steps.version.outputs.new_tag
|
||||
run: |
|
||||
echo "Creating version tag ${{ steps.version.outputs.new_tag }}"
|
||||
git tag -fa ${{ steps.version.outputs.new_tag }} -m "Version ${{ steps.version.outputs.new_tag }}"
|
||||
git push origin ${{ steps.version.outputs.new_tag }} --force
|
||||
|
||||
- name: Update stable tag
|
||||
if: |
|
||||
steps.version.outputs.new_tag && (
|
||||
github.event_name == 'workflow_dispatch' && inputs.update_stable ||
|
||||
github.event_name == 'push'
|
||||
)
|
||||
run: |
|
||||
echo "Updating stable tag to point to ${{ steps.version.outputs.new_tag }}"
|
||||
git tag -fa stable -m "Update stable tag to ${{ steps.version.outputs.new_tag }}"
|
||||
git push origin stable --force
|
||||
|
||||
- name: Update latest tag
|
||||
if: |
|
||||
steps.version.outputs.new_tag && (
|
||||
github.event_name == 'workflow_dispatch' && inputs.update_latest ||
|
||||
github.event_name == 'push'
|
||||
)
|
||||
run: |
|
||||
echo "Updating latest tag to point to ${{ steps.version.outputs.new_tag }}"
|
||||
git tag -fa latest -m "Update latest tag to ${{ steps.version.outputs.new_tag }}"
|
||||
git push origin latest --force
|
||||
...
|
||||
|
||||
Reference in New Issue
Block a user