Pull Request form Github Actions (#57) #47
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: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
jobs: | |
release: | |
name: π Release | |
if: ${{ github.repository_owner == 'guotingchao' }} | |
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: test echo | |
run: echo "${{ github.head_ref }} - ${{ github.event_name }}" | |
- name: π£ Create Release Pull Request or Publish to npm | |
if: github.head_ref == 'changeset-release/main' && github.event_name == 'push' | |
id: changesets | |
uses: changesets/action@v1.4.7 | |
with: | |
title: "chore(release): version packages π¦" | |
version: pnpm run publish:version | |
publish: pnpm run publish:release | |
commit: "chore(release): version packages π¦ [skip ci]" | |
env: | |
GITHUB_TOKEN: ${{ env.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ env.NPM_TOKEN }} |