We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9658969 commit 984fb13Copy full SHA for 984fb13
.github/workflows/release.yaml
@@ -216,6 +216,13 @@ jobs:
216
curl -sSfL https://github.com/goreleaser/nfpm/releases/download/v2.3.1/nfpm_2.3.1_`uname -s`_`uname -m`.tar.gz | tar -C ~/.local/bin -zxv nfpm
217
echo "$HOME/.local/bin" >> $GITHUB_PATH
218
219
+ # The version of node-gyp we use depends on distutils but it was removed
220
+ # in Python 3.12. It seems to be fixed in the latest node-gyp so when we
221
+ # next update Node we can probably remove this. For now, install
222
+ # setuptools since it contains distutils.
223
+ - name: Install Python utilities
224
+ run: python3 -m pip install setuptools
225
+
226
- name: Download npm package
227
uses: actions/download-artifact@v3
228
with:
0 commit comments