From e237377e33c6407c242ee3f2ed6e701ec128f79a Mon Sep 17 00:00:00 2001 From: Tim Curtin <8890118+timm088@users.noreply.github.com> Date: Wed, 27 May 2026 10:47:39 +1000 Subject: [PATCH 1/2] Update to support node and npm Run npm pkg fix --- .github/workflows/publish.yaml | 3 +-- package.json | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index d0fa3754..70665b11 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -26,8 +26,7 @@ jobs: - name: Setup node uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # pin@v6.3.0 with: - node-version: '22' # matches .nvmrc - registry-url: https://registry.npmjs.org + node-version: '24' package-manager-cache: false # never use caching in release builds - name: Install dependencies diff --git a/package.json b/package.json index f46d3c00..862a8179 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "license": "Apache-2.0", "repository": { "type": "git", - "url": "https://github.com/immutable/contracts.git" + "url": "git+https://github.com/immutable/contracts.git" }, "homepage": "https://github.com/immutable/contracts", "bugs": { From d32310f68693638eae34217f0b18b10111dcefe4 Mon Sep 17 00:00:00 2001 From: Tim Curtin <8890118+timm088@users.noreply.github.com> Date: Wed, 27 May 2026 10:48:03 +1000 Subject: [PATCH 2/2] Restore registry-url --- .github/workflows/publish.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 70665b11..44d743f0 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -27,6 +27,7 @@ jobs: uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # pin@v6.3.0 with: node-version: '24' + registry-url: 'https://registry.npmjs.org' package-manager-cache: false # never use caching in release builds - name: Install dependencies