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 ca8dda3 commit b5ce6a7Copy full SHA for b5ce6a7
.github/workflows/release-commit.yml
@@ -0,0 +1,31 @@
1
+name: Publish Any Commit
2
+
3
+on: [push, pull_request]
4
5
+permissions: {}
6
7
+jobs:
8
+ build:
9
+ runs-on: ubuntu-latest
10
11
+ steps:
12
+ - name: Checkout
13
+ uses: actions/checkout@v5
14
15
+ - name: Install pnpm
16
+ uses: pnpm/action-setup@v4
17
18
+ - name: Install Node.js
19
+ uses: actions/setup-node@v5
20
+ with:
21
+ node-version: lts/*
22
+ cache: pnpm
23
24
+ - name: Install dependencies
25
+ run: pnpm install
26
27
+ - name: Build
28
+ run: pnpm build
29
30
+ - name: Publish
31
+ run: pnpm dlx pkg-pr-new publish --compact
0 commit comments