Workflow: Fix Windows artifact detection with wildcards and debug listing
Some checks failed
Build Tamigo CLI / Build Linux Binary (push) Successful in 52s
Build Tamigo CLI / Build Windows Binary (push) Failing after 4s

This commit is contained in:
Daniel Dybing
2026-03-11 13:51:25 +01:00
parent 6ecc2b4946
commit 2d910949ad
2 changed files with 7 additions and 2 deletions

View File

@@ -47,8 +47,11 @@ jobs:
cdrx/pyinstaller-windows \
sh -c "pip install -r requirements.txt && pyinstaller --onefile --name tamigo-cli tamigo.py"
- name: Debug - List output files
run: ls -R dist/
- name: Upload Windows Artifact
uses: actions/upload-artifact@v3
with:
name: binary-windows
path: dist/tamigo-cli.exe
path: dist/*.exe

View File

@@ -40,8 +40,10 @@ jobs:
-v "${{ github.workspace }}:/src" \
cdrx/pyinstaller-windows \
sh -c "pip install -r requirements.txt && pyinstaller --onefile --name tamigo-cli tamigo.py"
- name: Debug - List output files
run: ls -R dist/
- name: Rename for release
run: mv dist/tamigo-cli.exe dist/tamigo-cli-windows.exe
run: mv dist/*.exe dist/tamigo-cli-windows.exe
- name: Upload to Release
uses: softprops/action-gh-release@v2
with: