Skip to content
Merged
Show file tree
Hide file tree
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
11 changes: 11 additions & 0 deletions .github/workflows/bug-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,17 @@ jobs:
- name: Print All Github Environment Variables
run: env

- name: Install native deps for node-canvas (macOS)
if: runner.os == 'macOS'
run: |
brew update
brew install pkg-config cairo pango libpng jpeg giflib librsvg
- name: Install native deps for node-canvas (Linux)
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get install -y build-essential pkg-config libcairo2-dev libpango1.0-dev libpng-dev libjpeg-dev libgif-dev librsvg2-dev

- name: Update rush
run: node common/scripts/install-run-rush.js update --bypass-policy

Expand Down
126 changes: 0 additions & 126 deletions .github/workflows/hotfix-release.yml

This file was deleted.

70 changes: 0 additions & 70 deletions .github/workflows/pre-release.yml

This file was deleted.

12 changes: 11 additions & 1 deletion .github/workflows/release-changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
jobs:
update-changelog-after-publish-a-release:
name: GitHub Actions Test
runs-on: macOS-13
runs-on: macos-latest

strategy:
matrix:
Expand All @@ -29,6 +29,16 @@ jobs:
cache-dependency-path: './common/config/rush/pnpm-lock.yaml'

# Install rush
- name: Install native deps for node-canvas (macOS)
if: runner.os == 'macOS'
run: |
brew update
brew install pkg-config cairo pango libpng jpeg giflib librsvg
- name: Install native deps for node-canvas (Linux)
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get install -y build-essential pkg-config libcairo2-dev libpango1.0-dev libpng-dev libjpeg-dev libgif-dev librsvg2-dev
- name: Install rush
run: node common/scripts/install-run-rush.js install --bypass-policy

Expand Down
Loading
Loading