From 258776eb447a55598aaf67751c7258af4e3f6641 Mon Sep 17 00:00:00 2001 From: Serguei Balanovich Date: Mon, 22 Jul 2024 13:20:53 +0100 Subject: [PATCH] Try release PAT again --- .github/workflows/release.yaml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 4809745e1..68bc5332a 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -18,14 +18,15 @@ jobs: id-token: write # to enable use of OIDC for npm provenance steps: - name: checkout - uses: actions/checkout@v2.4.2 + uses: actions/checkout@v4 - name: node - uses: actions/setup-node@v3.4.1 + uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 20 registry-url: https://registry.npmjs.org - name: Authenticate with GitHub package registry - run: echo "//npm.pkg.github.com:_authToken=${{ secrets.PAT }}" > + run: + echo -e "@upsolve-labs:registry=https://npm.pkg.github.com/\n//npm.pkg.github.com/:_authToken=${{ secrets.PAT }}" > ~/.npmrc - name: install react run: npm i react