-
-
Notifications
You must be signed in to change notification settings - Fork 5
32 lines (32 loc) · 885 Bytes
/
publish.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: Publish Package to npmjs
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
id-token: write
steps:
- uses: actions/checkout@v4
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: '22.x'
registry-url: 'https://registry.npmjs.org'
cache: pnpm
- run: pnpm all:link
- run: pnpm i -r
- run: npm run all:check
- name: Deploy Docs
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs
publish_branch: gh-pages
destination_dir: docs
- run: npm pkg delete devDependencies -ws
- run: npm publish --access public --provenance -ws
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}