Skip to content

Commit 37cd449

Browse files
committed
Add Python setup step to GitHub Actions workflow
1 parent 9442119 commit 37cd449

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/publish-npm-packages.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
- feat/make-artemis-compatible
66
jobs:
77
build:
8-
runs-on: ubuntu-latest
8+
runs-on: ubuntu-22.04
99
permissions:
1010
contents: read
1111
packages: write
@@ -16,6 +16,9 @@ jobs:
1616
with:
1717
node-version: '20'
1818
registry-url: 'https://npm.pkg.github.com'
19+
- uses: actions/setup-python@v4
20+
with:
21+
python-version: '3.11'
1922
- name: Install deps & bootstrap
2023
run: |
2124
npm install -g node-gyp

0 commit comments

Comments
 (0)