Fix writeConfigFile #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish Package to npmjs | |
on: | |
push: | |
branches: | |
- npm-update | |
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@v4 | |
with: | |
node-version: '18.x' | |
cache: yarn | |
registry-url: 'https://registry.npmjs.org' | |
scope: '@apollo-annotation' | |
- run: yarn --immutable | |
- run: | | |
yarn config set npmAuthToken ${{ secrets.NPM_TOKEN }} | |
yarn workspaces foreach --no-private --all npm publish --tolerate-republish --tag devel | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |