fixed npmrc location #18
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 | |
on: | |
push: | |
branches: | |
- 'main' | |
concurrency: ${{ github.workflow }}-${{ github.ref }} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20.x | |
cache: 'npm' | |
- run: npm install --frozen-lockfile | |
working-directory: ./packages/react | |
- run: npm run build | |
working-directory: ./packages/react | |
- name: Create Release Pull Request | |
id: changesets | |
uses: changesets/action@v1 | |
with: | |
publish: false # Only create the release PR, no publishing | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Publish to npm | |
if: steps.changesets.outputs.published == 'true' # Ensure it only runs when a publish is required | |
run: npm publish | |
working-directory: ./packages/react | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |