We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd347b5 commit 81b12b4Copy full SHA for 81b12b4
1 file changed
.github/workflows/build-exe.yml
@@ -26,6 +26,15 @@ jobs:
26
# A stable requirements file is the foundation of a reliable build.
27
run: pip install -r requirements.txt
28
29
+ - name: Cache Nuitka Compilation Results
30
+ # This step significantly speeds up subsequent builds.
31
+ uses: actions/cache@v4
32
+ with:
33
+ path: |
34
+ %APPDATA%\Nuitka\Nuitka\Cache\
35
+ ~\AppData\Local\Nuitka\Nuitka\Cache\
36
+ key: ${{ runner.os }}-nuitka-cache-${{ hashFiles('**/*.py', '**/requirements.txt') }}
37
+
38
- name: Build with Nuitka
39
# --- THE FINAL, POLISHED CONFIGURATION ---
40
uses: Nuitka/Nuitka-Action@main
@@ -67,6 +76,7 @@ jobs:
67
76
include-data-files: |
68
77
LICENSE=LICENSE
69
78
README.md=README.md
79
+ Updates.md=Updates.md
70
80
71
81
# We explicitly tell Nuitka to put the output here.
72
82
output-dir: build
0 commit comments