From 5eee634811399565b533b7bbe240808660cd7f21 Mon Sep 17 00:00:00 2001 From: amtins Date: Wed, 23 Oct 2024 10:40:11 +0200 Subject: [PATCH] chore(github-actions): add registry url to release action Adding the `registry-url` property to the `release` action should allow to select the tag to be promoted as the `latest` release from the github `releases` interface. - add `registry-url` to `release.yml` file --- .github/workflows/release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0c334c4..b348a3b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,6 +16,7 @@ jobs: uses: actions/setup-node@v3 with: node-version: 20 + registry-url: 'https://registry.npmjs.org' always-auth: true - run: | npm dist-tag add @srgssr/pillarbox-web@$(echo "${{github.ref_name}}" | cut -c 2-) latest