We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63c5ec8 commit 20d3204Copy full SHA for 20d3204
.github/workflows/build-release.yml
@@ -13,7 +13,7 @@ jobs:
13
runs-on: ${{matrix.os}}
14
strategy:
15
matrix:
16
- os: [ubuntu-20.04, windows-latest]
+ os: [ubuntu-latest, windows-latest]
17
18
steps:
19
- name: Checkout code
@@ -25,12 +25,14 @@ jobs:
25
python-version: '3.12'
26
27
- name: Install dependencies
28
- run: pip install nuitka json5
+ run: |
29
+ pip install nuitka json5
30
+ python -m pip install --upgrade pip
31
32
- name: Build with Nuitka
33
run: |
34
cd src
- nuitka --standalone \
35
+ python -m nuitka --standalone \
36
--output-filename=fancyfetch \
37
--output-dir=dist \
38
--include-module=setup \
0 commit comments