File tree Expand file tree Collapse file tree 1 file changed +46
-0
lines changed
Expand file tree Collapse file tree 1 file changed +46
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Publish Any Commit
2+
3+ on :
4+ pull_request :
5+ branches : main
6+ paths-ignore :
7+ - ' docs/**'
8+ - ' examples/**'
9+ - ' functions/**'
10+ - ' tests/**'
11+
12+ push :
13+ branches :
14+ - ' **'
15+ tags :
16+ - ' !**'
17+ paths-ignore :
18+ - ' docs/**'
19+ - ' examples/**'
20+ - ' functions/**'
21+ - ' tests/**'
22+
23+ jobs :
24+ build :
25+ if : github.repository == 'vuejs/vuefire'
26+ runs-on : ubuntu-latest
27+
28+ steps :
29+ - name : Checkout code
30+ uses : actions/checkout@v4
31+ with :
32+ fetch-depth : 0
33+ - uses : pnpm/action-setup@v4
34+ - uses : actions/setup-node@v4
35+ with :
36+ node-version : lts/*
37+ cache : pnpm
38+
39+ - name : Install
40+ run : pnpm install --frozen-lockfile
41+
42+ - name : Build
43+ run : pnpm run build
44+
45+ - name : Release
46+ run : pnpm dlx pkg-pr-new publish --compact --pnpm .
You can’t perform that action at this time.
0 commit comments