Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 8 additions & 11 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Release CI (scheme A - changelog-first)
name: Release CI

on:
push:
Expand Down Expand Up @@ -26,9 +26,6 @@ jobs:
group: vchart-release-${{ github.ref_name }}
cancel-in-progress: false

env:
RUSH_NODE_OPTIONS: '--max_old_space_size=4096'

steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -297,38 +294,38 @@ jobs:

- name: Build vutils-extension && vchart
env:
NODE_OPTIONS: ${{ env.RUSH_NODE_OPTIONS }}
NODE_OPTIONS: '--max_old_space_size=4096'
run: node common/scripts/install-run-rush.js build --to @visactor/vchart

- name: Build vchart-extension
if: startsWith(github.ref_name, 'release/') || startsWith(github.ref_name, 'pre-release/')
env:
NODE_OPTIONS: ${{ env.RUSH_NODE_OPTIONS }}
NODE_OPTIONS: '--max_old_space_size=4096'
run: node common/scripts/install-run-rush.js build --only @visactor/vchart-extension

- name: Build react-vchart
env:
NODE_OPTIONS: ${{ env.RUSH_NODE_OPTIONS }}
NODE_OPTIONS: '--max_old_space_size=4096'
run: node common/scripts/install-run-rush.js build --only @visactor/react-vchart

- name: Build openinula-vchart
env:
NODE_OPTIONS: ${{ env.RUSH_NODE_OPTIONS }}
NODE_OPTIONS: '--max_old_space_size=4096'
run: node common/scripts/install-run-rush.js build --only @visactor/openinula-vchart

- name: Build taro-vchart
env:
NODE_OPTIONS: ${{ env.RUSH_NODE_OPTIONS }}
NODE_OPTIONS: '--max_old_space_size=4096'
run: node common/scripts/install-run-rush.js build --only @visactor/taro-vchart

- name: Build lark-vchart
env:
NODE_OPTIONS: ${{ env.RUSH_NODE_OPTIONS }}
NODE_OPTIONS: '--max_old_space_size=4096'
run: node common/scripts/install-run-rush.js build --only @visactor/lark-vchart

- name: Build wx-vchart
env:
NODE_OPTIONS: ${{ env.RUSH_NODE_OPTIONS }}
NODE_OPTIONS: '--max_old_space_size=4096'
run: node common/scripts/install-run-rush.js build --only @visactor/wx-vchart

- name: Publish to npm (release)
Expand Down
Loading