Skip to content

Commit ffb6878

Browse files
authored
Merge pull request #2187 from VisActor/release/1.9.1
[Auto release] release 1.9.1
2 parents 5af35d0 + 673d4a0 commit ffb6878

File tree

153 files changed

+5697
-629
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

153 files changed

+5697
-629
lines changed

.github/workflows/hotfix-release.yml

+4-8
Original file line numberDiff line numberDiff line change
@@ -48,21 +48,17 @@ jobs:
4848
release_version: ${{ steps.semver_parser.outputs.full }}
4949
write_next_bump: true
5050

51-
- name: Update version
51+
- name: Generate changelog by rush version
5252
run: node common/scripts/install-run-rush.js version --bump
5353

54+
- name: Update version
55+
run: node common/scripts/apply-release-version.js 'none' ${{ steps.semver_parser.outputs.main }}
56+
5457
- name: Build vutils-extension && vchart
5558
env:
5659
NODE_OPTIONS: '--max_old_space_size=4096'
5760
run: node common/scripts/install-run-rush.js build --to @visactor/vchart
5861

59-
# run bugserver after the build of main packages
60-
- name: Run Bugserver
61-
working-directory: ./packages/vchart
62-
env:
63-
BUG_SERVER_TOKEN: ${{ secrets.BUG_SERVER_TOKEN }}
64-
run: node ../../common/scripts/install-run-rushx.js ci
65-
6662
- name: Build react-vchart
6763
env:
6864
NODE_OPTIONS: '--max_old_space_size=4096'

.github/workflows/pre-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
semver_pattern: '^pre-release/(.*)$' # ^v?(.*)$ by default
4343

4444
- name: Apply prereleaseName
45-
run: node common/scripts/apply-prerelease-version.js ${{ steps.semver_parser.outputs.pre_release_name }} ${{ steps.semver_parser.outputs.main }}
45+
run: node common/scripts/apply-release-version.js ${{ steps.semver_parser.outputs.pre_release_name }} ${{ steps.semver_parser.outputs.main }}
4646

4747
- name: Build packages
4848
env:

.github/workflows/release.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,12 @@ jobs:
4848
release_version: ${{ steps.semver_parser.outputs.full }}
4949
write_next_bump: true
5050

51-
- name: Update version
51+
- name: Generate changelog by rush version
5252
run: node common/scripts/install-run-rush.js version --bump
5353

54+
- name: Update version
55+
run: node common/scripts/apply-release-version.js 'none' ${{ steps.semver_parser.outputs.main }}
56+
5457
- name: Build vutils-extension && vchart
5558
env:
5659
NODE_OPTIONS: '--max_old_space_size=4096'

.github/workflows/unit-test.yml

+6-5
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,14 @@ jobs:
3030
# Install rush
3131
- name: Install rush
3232
run: node common/scripts/install-run-rush.js install --bypass-policy
33+
3334
- name: Build vutils-extension
3435
run: node common/scripts/install-run-rush.js build --only @visactor/vutils-extension
36+
3537
- name: Build VChart
3638
env:
3739
NODE_OPTIONS: '--max_old_space_size=4096'
38-
run: node common/scripts/install-run-rush.js run -p @visactor/vchart -s build:ci
39-
- name: Compile
40-
run: node common/scripts/install-run-rush.js compile --only tag:package
41-
- name: Test
42-
run: node common/scripts/install-run-rush.js test --only tag:package
40+
run: node common/scripts/install-run-rush.js run -p @visactor/vchart -s build-cjs
41+
42+
- name: Test VChart
43+
run: node common/scripts/install-run-rush.js run -p @visactor/vchart -s test

0 commit comments

Comments
 (0)