This repository was archived by the owner on Mar 28, 2026. It is now read-only.
Update bug_report.md (#1179) #14
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: build-appimage | |
| on: | |
| workflow_call: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Build AppImage | |
| env: | |
| WORKSPACE: ${{ github.workspace }} | |
| run: | | |
| docker build \ | |
| -t jellyfin-desktop-appimage \ | |
| -f dev/appimage/Dockerfile \ | |
| . | |
| mkdir -p output | |
| docker run --rm \ | |
| -v "${WORKSPACE}/output:/host-output" \ | |
| jellyfin-desktop-appimage | |
| - name: Archive production artifacts | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: linux-appimage-x86_64 | |
| path: ${{ github.workspace }}/output/JellyfinDesktop-*.AppImage |