From 3be8ef64718ddb898a2f8ecb90c602d716643035 Mon Sep 17 00:00:00 2001 From: daquinoaldo <18645793+daquinoaldo@users.noreply.github.com> Date: Sun, 6 Sep 2026 16:11:03 +0200 Subject: [PATCH 1/2] ci: use node 24 for npm publishing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [OpenCode](https://opencode.ai) (Smart-router) --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fe0777e..3228b46 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,7 +29,7 @@ jobs: - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 with: - node-version: 22 + node-version: 24 registry-url: https://registry.npmjs.org/ package-manager-cache: false From a8031f3f5515d8d2d1761bbc376cdbd821fb7992 Mon Sep 17 00:00:00 2001 From: daquinoaldo <18645793+daquinoaldo@users.noreply.github.com> Date: Sun, 6 Sep 2026 16:13:29 +0200 Subject: [PATCH 2/2] ci: merge publish_existing into upgrade input MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [OpenCode](https://opencode.ai) (Smart-router) --- .github/workflows/release.yml | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3228b46..1de4917 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -4,7 +4,7 @@ on: workflow_dispatch: inputs: upgrade: - description: Type of version upgrade (patch, minor, major) + description: Version action (patch, minor, major, or publish existing without bumping) required: true default: patch type: choice @@ -12,11 +12,7 @@ on: - patch - minor - major - publish_existing: - description: Publish the version already on master without changing it - required: true - default: false - type: boolean + - existing permissions: contents: write @@ -34,17 +30,17 @@ jobs: package-manager-cache: false - name: Setup git - if: inputs.publish_existing == false + if: inputs.upgrade != 'existing' run: |- git config --global user.name "github-actions[bot]" git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" - name: Bump version - if: inputs.publish_existing == false + if: inputs.upgrade != 'existing' run: npm version ${{ inputs.upgrade }} - name: Push version - if: inputs.publish_existing == false + if: inputs.upgrade != 'existing' run: |- git push git push --tags