Use custom cache dir to hopefully speed up launches after the first launch

This commit is contained in:
2024-11-01 16:03:59 -04:00
parent b77587771c
commit 33197c36f1
2 changed files with 4 additions and 4 deletions

View File

@@ -31,7 +31,7 @@ jobs:
pip install -r requirements.txt
- name: Build Application
run: |
python -m nuitka --show-progress --assume-yes-for-downloads --onefile wiipy.py -o wiipy
python -m nuitka --show-progress --assume-yes-for-downloads --onefile wiipy.py --onefile-tempdir-spec="{CACHE_DIR}/NinjaCheetah/WiiPy" -o wiipy
- name: Prepare Package for Upload
run: |
mv wiipy ~/wiipy
@@ -59,7 +59,7 @@ jobs:
pip install -r requirements.txt
- name: Build Application
run: |
python -m nuitka --show-progress --assume-yes-for-downloads --onefile wiipy.py -o wiipy
python -m nuitka --show-progress --assume-yes-for-downloads --onefile wiipy.py --onefile-tempdir-spec="{CACHE_DIR}/NinjaCheetah/WiiPy" -o wiipy
- name: Prepare Package for Upload
run: |
mv wiipy ~/wiipy
@@ -89,7 +89,7 @@ jobs:
pip install -r requirements.txt
- name: Build Application
run: |
python -m nuitka --show-progress --assume-yes-for-downloads --onefile wiipy.py
python -m nuitka --show-progress --assume-yes-for-downloads --onefile wiipy.py --onefile-tempdir-spec="{CACHE_DIR}/NinjaCheetah/WiiPy"
- name: Upload Application
uses: actions/upload-artifact@v4.3.0
with: