chore: cr problem #4
This file contains 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: hotfix release CI | |
on: | |
push: | |
branches: | |
- 'hotfix/[0-9]+.[0-9]+.[0-9]+' | |
jobs: | |
build: | |
runs-on: macOS-12 # 如果用了electron,记得改成 macOS-latest | |
permissions: | |
contents: write | |
pull-requests: 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 | |
- run: | | |
git config user.name ${{ github.actor }} | |
git config user.email ${{ github.actor }}@users.noreply.github.com | |
- 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' | |
- name: Print All Github Environment Variables | |
run: env | |
- name: Preparation of node-canvas | |
run: | |
brew install pkg-config cairo pango libpng jpeg giflib librsvg | |
# 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/vrender | |
semver_string: ${{ github.ref_name }} | |
semver_pattern: '^hotfix/(.*)$' # ^v?(.*)$ by default | |
- name: update nextBump of version policies | |
uses: xile611/set-next-bump-of-rush@main | |
with: | |
release_version: ${{ steps.semver_parser.outputs.full }} | |
write_next_bump: true | |
- name: Update version | |
run: node common/scripts/install-run-rush.js version --bump | |
- name: Build vrender-core | |
run: node common/scripts/install-run-rush.js build --only @visactor/vrender-core | |
- name: Build vrender-kits | |
run: node common/scripts/install-run-rush.js build --only @visactor/vrender-kits | |
- name: Build vrender | |
run: node common/scripts/install-run-rush.js build --only @visactor/vrender | |
- name: Build vrender-components | |
run: node common/scripts/install-run-rush.js build --only @visactor/vrender-components | |
# - name: Run CI | |
# working-directory: ./tools/bugserver-trigger | |
# env: | |
# BUG_SERVER_TOKEN: ${{ secrets.BUG_SERVER_TOKEN }} | |
# run: node ../../common/scripts/install-run-rushx.js ci -t @internal/bugserver-trigger | |
- name: Build react-vrender | |
run: node common/scripts/install-run-rush.js build --only @visactor/react-vrender | |
- name: Build react-vrender-utils | |
run: node common/scripts/install-run-rush.js build --only @visactor/react-vrender-utils | |
- 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 hotfix | |
- name: Update shrinkwrap | |
run: node common/scripts/install-run-rush.js update | |
- name: Get npm version | |
id: package-version | |
uses: xile611/[email protected] | |
with: | |
path: packages/vrender | |
- 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 }} | |
- name: Collect changelog of rush | |
uses: xile611/collect-rush-changlog@main | |
id: changelog | |
with: | |
version: ${{ steps.package-version.outputs.current_version }} | |
- name: Create Release for Tag | |
id: release_tag | |
uses: ncipollo/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag: v${{ steps.package-version.outputs.current_version }} | |
commit: ${{ github.ref_name }} | |
prerelease: false | |
body: | | |
${{ steps.changelog.outputs.markdown }} | |
draft: true # |