mirror of
https://github.com/C4illin/ConvertX.git
synced 2026-03-03 02:57:01 +00:00
fix: Version wasn't bumped for v0.16.0 (#456)
This commit is contained in:
26
.github/workflows/bump-version.yml
vendored
Normal file
26
.github/workflows/bump-version.yml
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
name: Bump Version
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- "v[0-9]+.[0-9]+.[0-9]+"
|
||||
|
||||
jobs:
|
||||
bump-version:
|
||||
name: Bump Version
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v6
|
||||
|
||||
- name: Set up Node.js
|
||||
uses: actions/setup-node@v6
|
||||
with:
|
||||
node-version: "22"
|
||||
|
||||
- name: Bump version and push tag
|
||||
uses: ramonpaolo/bump-version@v2.3.1
|
||||
with:
|
||||
tag: ${{ github.ref_name }}
|
||||
commit: true
|
||||
branch_to_push: "main"
|
||||
Reference in New Issue
Block a user