chore: update doc #50
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: Changesets | |
on: | |
push: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
changesets: | |
name: Create version pull request | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- name: Setup Node.js 20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install Dependencies | |
uses: ./.github/actions/install-dependencies | |
- name: Create Release Pull Request | |
uses: changesets/action@v1 | |
with: | |
commit: "chore: version package" | |
title: "chore: version package" | |
version: pnpm changeset:version | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
permissions: | |
contents: write | |
id-token: write | |
pull-requests: write | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
- name: Setup Node.js 20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install dependencies | |
uses: ./.github/actions/install-dependencies | |
- name: Publish to NPM | |
uses: changesets/action@v1 | |
with: | |
createGithubReleases: ${{ github.ref == 'refs/heads/main' }} | |
publish: pnpm changeset:publish | |
version: pnpm changeset:version | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: Publish Prerelease | |
if: steps.changesets.outputs.published != 'true' | |
continue-on-error: true | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
npm config set "//registry.npmjs.org/:_authToken" "$NPM_TOKEN" | |
git reset --hard origin/main | |
pnpm clean | |
pnpm changeset version --no-git-tag --snapshot canary | |
pnpm changeset:prepublish | |
pnpm changeset publish --no-git-tag --snapshot canary --tag canary |