Add workflow to bump version on tag push

This commit is contained in:
Antynea
2026-05-10 12:07:00 +02:00
committed by GitHub
parent 7e8a45ca9c
commit b8e6deaafd

33
.github/workflows/bump-version.yml vendored Normal file
View File

@@ -0,0 +1,33 @@
name: Bump version on tag
on:
push:
tags:
- '*'
permissions:
contents: write
jobs:
bump-version:
name: Bump version in config
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: master
fetch-tags: true
- name: Update version in config
run: |
version="$(git describe --tags --abbrev=0)"
sed -i "s/GRUB_BTRFS_VERSION=.*/GRUB_BTRFS_VERSION=${version}/" config
- name: Commit updated config
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add config
git commit -m "chore: bump version to ${version}"
git push origin master