From 2f1f2eab984a48d502ebcac2d13064d5b4cffb3f Mon Sep 17 00:00:00 2001 From: Vitaly Gashkov Date: Sat, 25 Nov 2023 19:38:58 +0500 Subject: [PATCH] fix distutils error --- .github/workflows/publish.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 7696cf7..c3f2e2b 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -4,10 +4,6 @@ on: branches: - main -env: - # https://github.com/nodejs/node-gyp/issues/2869 - PYTHON_VERSION: '3.11' - jobs: build-win: name: Build for Windows @@ -61,6 +57,10 @@ jobs: with: node-version: 18 + # https://github.com/nodejs/node-gyp/issues/2869 + - name: Fix distutils issue for node-gyp + run: python3 -m pip install setuptools + - name: Install app dependencies run: npm ci