Skip to content

Commit 20d3204

Browse files
Revert to latest Ubuntu, hopefully fix Windows build issue.
1 parent 63c5ec8 commit 20d3204

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/build-release.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ${{matrix.os}}
1414
strategy:
1515
matrix:
16-
os: [ubuntu-20.04, windows-latest]
16+
os: [ubuntu-latest, windows-latest]
1717

1818
steps:
1919
- name: Checkout code
@@ -25,12 +25,14 @@ jobs:
2525
python-version: '3.12'
2626

2727
- name: Install dependencies
28-
run: pip install nuitka json5
28+
run: |
29+
pip install nuitka json5
30+
python -m pip install --upgrade pip
2931
3032
- name: Build with Nuitka
3133
run: |
3234
cd src
33-
nuitka --standalone \
35+
python -m nuitka --standalone \
3436
--output-filename=fancyfetch \
3537
--output-dir=dist \
3638
--include-module=setup \

0 commit comments

Comments
 (0)