Skip to content

Commit fc37cd2

Browse files
committed
fix: release action bundle (#14)
1 parent 6718674 commit fc37cd2

3 files changed

Lines changed: 3 additions & 0 deletions

File tree

.github/workflows/release-rc.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ jobs:
5656
run: |
5757
yarn install --immutable
5858
yarn run init
59+
yarn run build:all
5960
6061
- name: Setup .yarnrc.yml
6162
run: |

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ jobs:
7474
run: |
7575
yarn install --immutable
7676
yarn run init
77+
yarn run build:all
7778
yarn run update-package -v ${{ github.event.inputs.version }}
7879
7980
- name: Setup .yarnrc.yml

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
"editor": "INTEGRATION=editor npm run dev",
2121
"fs": "INTEGRATION=filesystem npm run dev",
2222
"build": "node scripts/build",
23+
"build:all": "yarn run bundle && yarn run generate && yarn run build",
2324
"bundle": "node scripts/bundle",
2425
"create": "node scripts/create",
2526
"format": "prettier --write --parser typescript \"packages/**/*.ts?(x)\"",

0 commit comments

Comments
 (0)