From bde67add68738fe412d2eb0fbd73cb93738a9d5b Mon Sep 17 00:00:00 2001 From: Kevin Ingersoll Date: Wed, 10 Jul 2024 14:24:29 +0100 Subject: [PATCH] build: fix rm npm tag setup (#2933) --- .github/workflows/remove-npm-tag.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/remove-npm-tag.yml b/.github/workflows/remove-npm-tag.yml index 3943a72357..01f0620cc0 100644 --- a/.github/workflows/remove-npm-tag.yml +++ b/.github/workflows/remove-npm-tag.yml @@ -19,12 +19,15 @@ jobs: submodules: recursive fetch-depth: 0 + - name: Setup + uses: ./.github/actions/setup + - name: Set deployment token run: npm config set '//registry.npmjs.org/:_authToken' "${NPM_TOKEN}" env: NPM_TOKEN: ${{ secrets.NPM_TOKEN }} - name: Remove npm dist tag - run: pnpm dist-tag-rm + run: pnpm run dist-tag-rm env: TAG: ${{ github.event.inputs.tag }}