From bef07a787ea5b32f1da3c0d63f8114331101cfc6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emrik=20=C3=96stling?= Date: Wed, 3 Dec 2025 21:16:05 +0100 Subject: [PATCH] fix: Version wasn't bumped for v0.16.0 (#456) --- .github/workflows/bump-version.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/bump-version.yml diff --git a/.github/workflows/bump-version.yml b/.github/workflows/bump-version.yml new file mode 100644 index 0000000..b15ea29 --- /dev/null +++ b/.github/workflows/bump-version.yml @@ -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"