From f310b573458859ff75333dff0391bb4b7d3acfab Mon Sep 17 00:00:00 2001 From: Titouan Launay Date: Tue, 30 Jan 2024 10:08:02 -0800 Subject: [PATCH] Add NPM token debug step --- .github/workflows/release.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 3acc514..69e1556 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -24,6 +24,10 @@ jobs: git config --global user.name "GitHub Actions" git config --global user.email "actions@github.com" - run: npm version patch -m "Bump version to %s [skip ci]" + - name: debug NPM token + run: echo $NPM_TOKEN + env: + NPM_TOKEN: ${{ secrets.NPM_TOKEN }} - run: npm publish --access public env: NPM_TOKEN: ${{ secrets.NPM_TOKEN }}