v1.6.0 #221

Merged
LukeGus merged 74 commits from dev-1.6.0 into main 2025-09-12 19:42:00 +00:00
Showing only changes of commit d88d6bf744 - Show all commits

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,14 +88,12 @@ 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
path: Termix-Linux-Portable.zip
retention-days: 30