From 18e9307a9417af46012024d744d91a6a14d61757 Mon Sep 17 00:00:00 2001 From: Luke Walton Date: Wed, 4 Dec 2024 15:18:56 +0000 Subject: [PATCH] ci: Add npm registry url as this is a required prop for publishing (#5) --- .github/workflows/publish-web.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/publish-web.yml b/.github/workflows/publish-web.yml index d8df687..9716540 100644 --- a/.github/workflows/publish-web.yml +++ b/.github/workflows/publish-web.yml @@ -11,6 +11,8 @@ jobs: steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v3 + with: + registry-url: "https://registry.npmjs.org" - name: Install packages run: npm ci - name: Compile Typescript files