Publish #18
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: Publish | |
on: | |
workflow_run: | |
workflows: ["CI"] | |
types: | |
- completed | |
push: | |
branches: | |
- "master" | |
concurrency: ${{ github.workflow }}-${{ github.ref }} | |
jobs: | |
publish: | |
if: ${{ github.event.workflow_run.conclusion == 'success' }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 9 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
cache: "pnpm" | |
- run: pnpm install --frozen-lockfile | |
- name: Prepare Package | |
run: pnpm run release | |
- name: Publish | |
run: pnpm publish --access public | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |