From a05b0502bb29a2aff58c60d6bd09dcfb292cbc5d Mon Sep 17 00:00:00 2001 From: suyao Date: Sat, 14 Jun 2025 20:47:42 +0800 Subject: [PATCH] chore: update dependencies installation for macOS and Ubuntu in release workflow --- .github/workflows/release.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5414aa94b..48ecf7071 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -47,7 +47,12 @@ jobs: - name: macos-latest dependencies fix if: matrix.os == 'macos-latest' run: | - brew install python-setuptools + brew install pkg-config cairo pango libpng jpeg giflib librsvg pixman python-setuptools + + - name: ubuntu-latest dependencies fix + if: matrix.os == 'ubuntu-latest' + run: | + sudo apt-get install build-essential libcairo2-dev libpango1.0-dev libjpeg-dev libgif-dev librsvg2-dev - name: windows-latest dependencies fix if: matrix.os == 'windows-latest'