From 8e52941f5227185e6abb7067dabada92d91c5d1d Mon Sep 17 00:00:00 2001 From: nukeop <12746779+nukeop@users.noreply.github.com> Date: Sun, 14 Jul 2024 02:34:31 +0200 Subject: [PATCH] Install setuptools on mac --- .github/workflows/release.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9aeefa50b6..9f67dd3fb5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -70,6 +70,9 @@ jobs: with: version: 20 cache: npm + - name: install setup tools + run: | + sudo -H pip install setuptools - run: npm ci - run: npm run build:macos shell: bash @@ -102,6 +105,9 @@ jobs: with: version: 20 cache: npm + - name: install setup tools + run: | + sudo -H pip install setuptools - run: npm ci - run: npm run build:macos-arm64 shell: bash