From 174877cd88659d3ead7ef4c6be05c79f7a2bde46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emrik=20=C3=96stling?= Date: Sun, 21 Jun 2026 22:39:58 +0200 Subject: [PATCH] ci: remove bump version action --- .github/workflows/bump-version.yml | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 .github/workflows/bump-version.yml diff --git a/.github/workflows/bump-version.yml b/.github/workflows/bump-version.yml deleted file mode 100644 index 9e960fa..0000000 --- a/.github/workflows/bump-version.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: Bump Version -permissions: - contents: write - -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: "24" - - - name: Bump version and push tag - uses: ramonpaolo/bump-version@v2.4.0 - with: - tag: ${{ github.ref_name }} - commit: true - branch_to_push: "main"