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 3617435 commit 12b82daCopy full SHA for 12b82da
.github/workflows/main.yml
@@ -25,7 +25,6 @@ jobs:
25
- run: npm run check
26
- run: npm run build
27
- run: npm test
28
- - run: npx pkg-pr-new publish
29
30
publish:
31
runs-on: ubuntu-latest
.github/workflows/publish.yml
@@ -0,0 +1,24 @@
1
+name: Publish Any Commit
2
+on:
3
+ pull_request:
4
+ push:
5
+ branches:
6
+ - '**'
7
+ tags:
8
+ - '!**'
9
+
10
+jobs:
11
+ build:
12
+ runs-on: ubuntu-latest
13
14
+ steps:
15
+ - uses: actions/checkout@v4
16
+ - uses: actions/setup-node@v4
17
+ with:
18
+ node-version: 24
19
+ cache: npm
20
21
+ - name: Build
22
+ run: npm run build
23
+ - name: Publish
24
+ run: npx pkg-pr-new publish
0 commit comments