-
Notifications
You must be signed in to change notification settings - Fork 558
32 lines (30 loc) · 772 Bytes
/
Copy pathpublish.yml
File metadata and controls
32 lines (30 loc) · 772 Bytes
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: Release & Publish
on:
workflow_dispatch:
push:
tags:
- 'v*'
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .npmrc file to publish to npm
uses: actions/setup-node@v4
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- name: Install pnpm
run: npm install -g pnpm
- name: Install dependencies
run: pnpm install
- name: Check Lint
run: pnpm lint
- name: Build everything
run: pnpm build
- name: Package artifact
run: pnpm package
- name: Publish to npm
run: pnpm run publish-npm
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}