Skip to content

Commit

Permalink
Smol fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
C0rn3j committed Jan 3, 2025
1 parent a4ed1b6 commit 341bef4
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion .github/workflows/build_Flatpak.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Run rustup
run: |
. "$HOME/.cargo/env"
rustup toolchain -y install stable
rustup toolchain install stable
# apt-get update
# apt-get install -y flatpak-builder

Expand All @@ -37,3 +37,21 @@ jobs:
bundle: tauonmb.flatpak
manifest-path: tauon-flatpak/com.github.taiko2k.tauonmb.json
cache-key: flatpak-builder-${{ github.sha }}

- name: "[DEBUG] List all files"
run: find .

- name: Create 7z
run: |
mkdir -p dist/zip
APP_NAME="TauonMusicBox"
APP_PATH="dist/${APP_NAME}"
ZIP_PATH="dist/zip/${APP_NAME}.7z"
zip -r "${ZIP_PATH}" "${APP_PATH}"
- name: Upload 7z artifact
uses: actions/upload-artifact@v4
with:
name: TauonMusicBox-flatpak
path: TauonMusicBox.7z

0 comments on commit 341bef4

Please sign in to comment.