Skip to content

chore: bump package managers, node for repo #117

chore: bump package managers, node for repo

chore: bump package managers, node for repo #117

Workflow file for this run

name: Publish Package
on:
push:
branches:
- master
jobs:
publish:
runs-on: ubuntu-latest
environment: Release
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 7
- name: Set node version to 18.x
uses: actions/setup-node@v4
with:
node-version: 18
registry-url: https://registry.npmjs.org/
- name: Setup npmrc
run: |
cat << EOF > "$HOME/.npmrc"
[email protected]
//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}
EOF
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Install dependencies
run: pnpm install
- name: Publish to npm
id: changesets
uses: changesets/action@v1
with:
version: pnpm run version
publish: pnpm publish -r
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}