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.
This commit is contained in:
Derek Bailey 2022-10-26 00:35:11 -07:00 committed by GitHub
parent cb616e27cb
commit ce307556fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -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 }}