Skip to content

Commit

Permalink
chore: move npmrc set up earlier
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuaellis committed Apr 11, 2024
1 parent 4ead84f commit 6943611
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
- name: Setup npmrc
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > .npmrc
- uses: actions/setup-node@v4
with:
cache: pnpm
node-version: lts/*
- run: corepack enable && pnpm --version
- run: pnpm install
- run: pnpm build
- name: Setup npmrc
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > .npmrc

- name: Create Release Pull Request or Publish to npm
id: changesets
Expand Down

0 comments on commit 6943611

Please sign in to comment.