We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f429fdc commit b9c5afcCopy full SHA for b9c5afc
.github/workflows/pkg.pr.new.yml
@@ -0,0 +1,43 @@
1
+name: Publish Any Commit
2
+
3
+on:
4
+ pull_request:
5
+ branches: main
6
+ paths-ignore:
7
+ - 'docs/**'
8
+ - 'playground/**'
9
+ - 'examples/**'
10
11
+ push:
12
+ branches:
13
+ - '**'
14
+ tags:
15
+ - '!**'
16
17
18
19
20
21
+jobs:
22
+ build:
23
+ runs-on: ubuntu-latest
24
25
+ steps:
26
+ - name: Checkout code
27
+ uses: actions/checkout@v4
28
+ with:
29
+ fetch-depth: 0
30
+ - uses: pnpm/action-setup@v4
31
+ - uses: actions/setup-node@v4
32
33
+ node-version: lts/*
34
+ cache: pnpm
35
36
+ - name: Install
37
+ run: pnpm install --frozen-lockfile
38
39
+ - name: Build
40
+ run: pnpm build
41
42
+ - name: Release
43
+ run: pnpm dlx pkg-pr-new publish --compact --pnpm .
.github/workflows/release-pr.yml
0 commit comments