Update electron-build.yml

This commit is contained in:
Karmaa
2025-09-10 21:45:24 -05:00
committed by GitHub
parent 7756dc6a4c
commit d85fb26a5d

View File

@@ -48,15 +48,13 @@ jobs:
- name: Create Windows Portable zip
run: |
cd release/win-unpacked
Compress-Archive -Path * -DestinationPath ../Termix-Windows-Portable.zip
cd ../..
Compress-Archive -Path "release/win-unpacked/*" -DestinationPath "Termix-Windows-Portable.zip"
- name: Upload Windows Portable Artifact
uses: actions/upload-artifact@v4
with:
name: Termix-Windows-Portable
path: release/Termix-Windows-Portable.zip
path: Termix-Windows-Portable.zip
retention-days: 30
- name: Upload Windows Installer Artifact
@@ -90,13 +88,11 @@ jobs:
- name: Create Linux Portable zip
run: |
cd release/linux-unpacked
zip -r ../Termix-Linux-Portable.zip *
cd ../..
zip -r Termix-Linux-Portable.zip release/linux-unpacked/*
- name: Upload Linux Portable Artifact
uses: actions/upload-artifact@v4
with:
name: Termix-Linux-Portable
path: release/Termix-Linux-Portable.zip
retention-days: 30
path: Termix-Linux-Portable.zip
retention-days: 3