π€ Pull Request form develop #72
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: π Release | |
on: | |
pull_request: | |
types: | |
- closed | |
branches: | |
- main | |
workflow_dispatch: | |
concurrency: ${{ github.workflow }}-${{ github.ref }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
PAT: ${{ secrets.PAT }} | |
jobs: | |
release: | |
name: π Release | |
if: github.repository_owner == 'guotingchao' && github.event.pull_request.merged == true && github.head_ref == 'develop' && github.event_name == 'pull_request' | |
runs-on: ubuntu-latest | |
steps: | |
- name: β¬οΈ Checkout | |
id: checkout | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ env.GITHUB_TOKEN }} | |
- name: π’ Setup node | |
id: setup-node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: latest | |
- name: π₯‘ Setup pnpm | |
id: setup-pnpm | |
uses: pnpm/action-setup@v3 | |
with: | |
version: latest | |
run_install: false | |
- name: π Get pnpm store directory | |
id: get-pnpm-cache-dir | |
run: echo "pnpm_cache_dir=$(pnpm store path)" >> "$GITHUB_OUTPUT" | |
- name: π Cache pnpm modules | |
uses: actions/cache@v4 | |
id: pnpm-cache | |
with: | |
path: ${{ steps.get-pnpm-cache-dir.outputs.pnpm_cache_dir }} | |
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm-store- | |
- name: 𧩠Install Dependencies | |
id: install-dependencies | |
run: pnpm install | |
- name: ποΈ Build | |
id: build-the-library | |
run: | | |
pnpm build | |
- name: π£ Create Release Pull Request | |
id: changesets | |
uses: changesets/[email protected] | |
with: | |
title: "chore(release): publish new version packages π¦" | |
commit: "chore(release): publish new version packages π¦ [skip ci]" | |
version: pnpm run publish:version | |
env: | |
GITHUB_TOKEN: ${{ env.PAT }} | |
NPM_TOKEN: ${{ env.NPM_TOKEN }} |