Skip to content

Commit 47d972b

Browse files
committed
add task to continuous release
1 parent 116ba72 commit 47d972b

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/cr.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,15 @@ jobs:
3232
- name: Install dependencies
3333
run: pnpm install --frozen-lockfile
3434

35-
- name: Build start
35+
- name: Build Packages
3636
run: |
3737
pnpm run build
3838
# rewrite .ts exports to .js
3939
pnpm --filter='./packages/*' -c exec "echo \$(cat package.json | jq '.exports = .publishConfig.exports') > package.json"
4040
41-
- name: Release
41+
- name: Release Packages
42+
# remove the compat flag until all packages are available on npm
43+
# run: |
44+
# pnpm dlx [email protected] publish './packages/*' --template './examples/*' --compact
4245
run: |
43-
pnpm dlx [email protected] publish './packages/start' --template './examples/*' --compact
46+
pnpm dlx [email protected] publish './packages/*'

0 commit comments

Comments
 (0)