Skip to content

Commit c340d64

Browse files
authored
Merge pull request #2009 from VisActor/release/1.0.32
[Auto release] release 1.0.32
2 parents 62d75c2 + 1aaf5f6 commit c340d64

35 files changed

Lines changed: 398 additions & 285 deletions

.github/workflows/bug-server.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,17 @@ jobs:
2828
- name: Print All Github Environment Variables
2929
run: env
3030

31+
- name: Install native deps for node-canvas (macOS)
32+
if: runner.os == 'macOS'
33+
run: |
34+
brew update
35+
brew install pkg-config cairo pango libpng jpeg giflib librsvg
36+
- name: Install native deps for node-canvas (Linux)
37+
if: runner.os == 'Linux'
38+
run: |
39+
sudo apt-get update
40+
sudo apt-get install -y build-essential pkg-config libcairo2-dev libpango1.0-dev libpng-dev libjpeg-dev libgif-dev librsvg2-dev
41+
3142
- name: Update rush
3243
run: node common/scripts/install-run-rush.js update --bypass-policy
3344

.github/workflows/hotfix-release.yml

Lines changed: 0 additions & 126 deletions
This file was deleted.

.github/workflows/pre-release.yml

Lines changed: 0 additions & 70 deletions
This file was deleted.

.github/workflows/release-changelog.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
update-changelog-after-publish-a-release:
99
name: GitHub Actions Test
10-
runs-on: macOS-13
10+
runs-on: macos-latest
1111

1212
strategy:
1313
matrix:
@@ -29,6 +29,16 @@ jobs:
2929
cache-dependency-path: './common/config/rush/pnpm-lock.yaml'
3030

3131
# Install rush
32+
- name: Install native deps for node-canvas (macOS)
33+
if: runner.os == 'macOS'
34+
run: |
35+
brew update
36+
brew install pkg-config cairo pango libpng jpeg giflib librsvg
37+
- name: Install native deps for node-canvas (Linux)
38+
if: runner.os == 'Linux'
39+
run: |
40+
sudo apt-get update
41+
sudo apt-get install -y build-essential pkg-config libcairo2-dev libpango1.0-dev libpng-dev libjpeg-dev libgif-dev librsvg2-dev
3242
- name: Install rush
3343
run: node common/scripts/install-run-rush.js install --bypass-policy
3444

0 commit comments

Comments
 (0)