File tree Expand file tree Collapse file tree 2 files changed +35
-96
lines changed Expand file tree Collapse file tree 2 files changed +35
-96
lines changed Original file line number Diff line number Diff line change 1+ name : Publish Any Commit
2+ on :
3+ push :
4+ tags :
5+ - " !**"
6+ branches :
7+ - " **"
8+
9+ env :
10+ PNPM_CACHE_FOLDER : .pnpm-store
11+ HUSKY : 0 # Bypass husky commit hook for CI
12+
13+ permissions : {}
14+
15+ concurrency :
16+ group : ${{ github.workflow }}-${{ github.event.number }}
17+ cancel-in-progress : true
18+
19+ jobs :
20+ build :
21+ runs-on : ubuntu-latest
22+ strategy :
23+ matrix :
24+ node-version : [20]
25+ steps :
26+ - uses : actions/checkout@v4
27+
28+ - uses : ./.github/actions/setup-node
29+ - name : Install dependencies
30+ run : pnpm install
31+ - name : Build
32+ run : pnpm nx run-many --target=build --parallel=5 -p="tag:npm:public"
33+ - run : |
34+ PATHS=$(pnpm list --recursive --depth=0 --json | jq -r '.[] | select(.private == false) | .path' | tr '\n' ' ')
35+ pnpx pkg-pr-new publish $PATHS --compact --pnpm
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments