Skip to content

Commit d70a3b6

Browse files
committed
Trying pkg.pr.new
1 parent 96887d4 commit d70a3b6

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/publish.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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: 18
19+
cache: npm
20+
21+
- run: npm ci
22+
- run: npm run build
23+
- run: npx pkg-pr-new publish --compact

0 commit comments

Comments
 (0)