Skip to content

Commit 81b12b4

Browse files
yml update
1 parent dd347b5 commit 81b12b4

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

.github/workflows/build-exe.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,15 @@ jobs:
2626
# A stable requirements file is the foundation of a reliable build.
2727
run: pip install -r requirements.txt
2828

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+
2938
- name: Build with Nuitka
3039
# --- THE FINAL, POLISHED CONFIGURATION ---
3140
uses: Nuitka/Nuitka-Action@main
@@ -67,6 +76,7 @@ jobs:
6776
include-data-files: |
6877
LICENSE=LICENSE
6978
README.md=README.md
79+
Updates.md=Updates.md
7080
7181
# We explicitly tell Nuitka to put the output here.
7282
output-dir: build

0 commit comments

Comments
 (0)