Skip to content

fixed npmrc location #18

fixed npmrc location

fixed npmrc location #18

Workflow file for this run

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