Skip to content
This repository was archived by the owner on Jan 19, 2026. It is now read-only.

Commit cfe0738

Browse files
committed
fix: added pkg.pr.new
1 parent e626d4e commit cfe0738

1 file changed

Lines changed: 37 additions & 0 deletions

File tree

.github/workflows/pkg.pr.new.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: Publish Any Commit
2+
on:
3+
push:
4+
branches:
5+
- '**'
6+
tags:
7+
- '!**'
8+
9+
env:
10+
HUSKY: 0 # Bypass husky commit hook for CI
11+
12+
permissions: {}
13+
14+
concurrency:
15+
group: ${{ github.workflow }}-${{ github.event.number }}
16+
cancel-in-progress: true
17+
18+
jobs:
19+
build:
20+
runs-on: ubuntu-latest
21+
strategy:
22+
matrix:
23+
node-version: [20]
24+
steps:
25+
- name: Checkout code
26+
uses: actions/checkout@v4
27+
28+
- run: corepack enable
29+
- uses: actions/setup-node@v4
30+
with:
31+
node-version: ${{ matrix.node-version }}
32+
cache: yarn
33+
- name: Install dependencies
34+
run: yarn install
35+
- name: Build
36+
run: yarn build
37+
- run: npx pkg-pr-new publish --compact

0 commit comments

Comments
 (0)