From d3871afb5822e9e3ad44bc0615957aef4b7a58ab Mon Sep 17 00:00:00 2001 From: UneBaguette <28904802+UneBaguette@users.noreply.github.com> Date: Mon, 4 May 2026 13:26:40 +0200 Subject: [PATCH] ci: fix OIDC publishing with Node 24 and registry-url --- .github/workflows/publish.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index d336872..065ee86 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -16,6 +16,12 @@ jobs: steps: - uses: actions/checkout@v6 + - name: Setup Node + uses: actions/setup-node@v6 + with: + node-version: '24.15.0' + registry-url: 'https://registry.npmjs.org' + - name: Install wasm-pack run: | curl -L https://github.com/wasm-bindgen/wasm-pack/releases/download/v0.14.0/wasm-pack-v0.14.0-x86_64-unknown-linux-musl.tar.gz | tar xz @@ -44,4 +50,4 @@ jobs: - name: Publish to npm run: | cd pkg - npm publish --access public --provenance + npm publish