From ce307556fbf97b24e849bef7978cd945a85ff23a Mon Sep 17 00:00:00 2001 From: Derek Bailey Date: Wed, 26 Oct 2022 00:35:11 -0700 Subject: [PATCH] release.yml: Remove `npm ci` This command [was suggested](https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages#publishing-packages-to-the-npm-registry) in the github docs, but not in our release steps. --- .github/workflows/release.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a9eb385f6..058f249e9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,7 +17,6 @@ jobs: with: node-version: '16.x' registry-url: 'https://registry.npmjs.org' - - run: npm ci - run: npm publish env: NODE_AUTH_TOEKN: ${{ secrets.NPM_TOKEN }}