Skip to content

Try adding auth token to yarnrc. #6

Try adding auth token to yarnrc.

Try adding auth token to yarnrc. #6

Workflow file for this run

name: Publish Package to npm
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v3
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
always-auth: true
- run: corepack enable
# This should match the version set in package.json
- run: yarn set version 3.3.0
- run: yarn
- run: echo "npmAuthToken: ${NPM_PUBLISH_TOKEN}" >> .yarnrc.yml

Check failure on line 20 in .github/workflows/publish.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/publish.yml

Invalid workflow file

You have an error in your yaml syntax on line 20
env:
NPM_PUBLISH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
- run: yarn npm publish