Skip to content

Commit ebfdaf9

Browse files
committed
init
1 parent 7be1fea commit ebfdaf9

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.github/workflows/cr.yml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Continuous Releases
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
- docusaurus-v**
8+
pull_request:
9+
10+
concurrency:
11+
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
12+
cancel-in-progress: true
13+
14+
jobs:
15+
release:
16+
name: Continuous Releases
17+
runs-on: ubuntu-latest
18+
19+
steps:
20+
- name: Checkout
21+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
22+
23+
- name: Installation
24+
run: yarn
25+
26+
- name: Build packages
27+
run: yarn build:packages
28+
29+
- name: Release
30+
run: npx pkg-pr-new publish './packages/*' --template './examples/*' --compact

0 commit comments

Comments
 (0)