for all that is holy please work and push the releases

This commit is contained in:
Blake Ridgway 2025-03-20 07:36:43 -05:00
parent beac3f6106
commit c394cb5300

View file

@ -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
@ -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 }}