8000
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 1344294 commit f51f7b7Copy full SHA for f51f7b7
.github/workflows/release-continuous.yml
@@ -0,0 +1,25 @@
1
+name: Publish Any Commit
2
+on: [push, pull_request]
3
+
4
+jobs:
5
+ build:
6
+ runs-on: ubuntu-latest
7
8
+ steps:
9
+ - name: Checkout code
10
+ uses: actions/checkout@v4
11
12
+ - run: corepack enable
13
+ - uses: actions/setup-node@v4
14
+ with:
15
+ node-version: lts/*
16
+ cache: pnpm
17
18
+ - name: Install dependencies
19
+ run: pnpm install
20
21
+ - name: Build
22
+ run: pnpm build
23
24
+ - name: Publish
25
+ run: pnpm dlx pkg-pr-new@0.0 publish --pnpm './packages/*'
0 commit comments