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 92c7cce commit 1c24e07Copy full SHA for 1c24e07
.github/workflows/continuous-publish.yml
@@ -0,0 +1,23 @@
1
+name: Publish Any Commit
2
+on: [push, pull_request]
3
+
4
+jobs:
5
+ auto-publish:
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
+ cache: "pnpm"
16
17
+ - name: Install dependencies
18
+ run: pnpm install
19
20
+ - name: Build
21
+ run: pnpm build
22
23
+ - run: pnpx pkg-pr-new publish './packages/*'
packages/vue-virtual-scroller/package.json
@@ -65,5 +65,8 @@
65
"> 1%",
66
"last 2 versions",
67
"not ie <= 8"
68
- ]
+ ],
69
+ "publishConfig": {
70
+ "access": "public"
71
+ }
72
}
0 commit comments