fix: fix the bug of no title #435
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Pre-release CI | |
| on: | |
| push: | |
| branches: | |
| - 'pre-release/[0-9]+.[0-9]+.[0-9]+-alpha.[0-9]+' | |
| - 'pre-release/[0-9]+.[0-9]+.[0-9]+-beta.[0-9]+' | |
| - 'pre-release/[0-9]+.[0-9]+.[0-9]+-rc.[0-9]+' | |
| - 'pre-release/[0-9]+.[0-9]+.[0-9]+-hotfix.[0-9]+' | |
| jobs: | |
| build: | |
| runs-on: macos-13 | |
| permissions: | |
| contents: write | |
| strategy: | |
| matrix: | |
| node-version: [18.x] | |
| # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: 'npm' | |
| cache-dependency-path: './common/config/rush/pnpm-lock.yaml' | |
| # Install rush | |
| - name: Install rush | |
| run: node common/scripts/install-run-rush.js install --bypass-policy | |
| - name: Parse semver version from branch name | |
| id: semver_parser | |
| uses: xile611/read-package-version-action@main | |
| with: | |
| path: packages/vchart | |
| semver_string: ${{ github.ref_name }} | |
| semver_pattern: '^pre-release/(.*)$' # ^v?(.*)$ by default | |
| - name: Apply prereleaseName | |
| run: node common/scripts/apply-release-version.js ${{ steps.semver_parser.outputs.pre_release_name }} ${{ steps.semver_parser.outputs.main }} | |
| - name: Build vutils-extension && vchart | |
| env: | |
| NODE_OPTIONS: '--max_old_space_size=4096' | |
| run: node common/scripts/install-run-rush.js build --to @visactor/vchart | |
| - name: Build vchart-extension | |
| env: | |
| 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: '--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: '--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: '--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: '--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: '--max_old_space_size=4096' | |
| run: node common/scripts/install-run-rush.js build --only @visactor/wx-vchart | |
| - name: Publish to npm | |
| env: | |
| NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} | |
| NPM_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} | |
| run: node common/scripts/install-run-rush.js publish --publish --include-all --tag ${{ steps.semver_parser.outputs.pre_release_type }} | |
| - name: Update shrinkwrap | |
| run: node common/scripts/install-run-rush.js update | |
| - name: Get npm version | |
| id: package-version | |
| uses: xile611/read-package-version-action@main | |
| with: | |
| path: packages/vchart | |
| - name: Commit & Push changes | |
| uses: actions-js/push@master | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| message: 'build: prelease version ${{ steps.package-version.outputs.current_version }}' | |
| branch: ${{ github.ref_name }} | |
| author_name: ${{ github.actor }} |