From c394cb53008ca338b529b23f4797cafec64ddc44 Mon Sep 17 00:00:00 2001 From: Blake Ridgway Date: Thu, 20 Mar 2025 07:36:43 -0500 Subject: [PATCH] for all that is holy please work and push the releases --- .github/workflows/build.yml | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e366d50..881a281 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,7 +31,6 @@ jobs: - name: Create AppDir and Files run: | mkdir -p AppDir/usr/bin - pyinstaller --onefile --windowed time_logix.py cp dist/time_logix AppDir/usr/bin/time_logix # Create AppRun file cat <<'EOF' > AppDir/AppRun @@ -52,7 +51,7 @@ jobs: EOF # Download a placeholder icon and save it as appicon.png in AppDir wget -q -O AppDir/appicon.png https://placehold.co/256 - + - name: Install FUSE library run: sudo apt-get update && sudo apt-get install -y libfuse2 @@ -121,15 +120,19 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Upload Linux AppImage to Release - uses: softprops/action-gh-release-upload@v2 - with: - asset_path: ./$(ls | grep AppImage) - asset_name: TimeLogix-AppImage.AppImage - asset_content_type: application/octet-stream + shell: bash + run: | + gh release upload ${{ github.ref_name }} ./$(ls | grep AppImage) \ + --name TimeLogix-AppImage.AppImage \ + --label "Linux AppImage" env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Upload Windows EXE to Release - uses: softprops/action-gh-release-upload@v2 - with: - asset_path: ./$(ls + shell: bash + run: | + gh release upload ${{ github.ref_name }} ./$(ls | grep .exe) \ + --name TimeLogix-Windows.exe \ + --label "Windows Executable" + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}