Fix labor seeker audio and text keys #3165
Workflow file for this run
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: Akhenaten Build Linux Flatpak | |
| on: | |
| push: | |
| branches: [ "master" ] | |
| pull_request: | |
| branches: [ "master" ] | |
| jobs: | |
| build: | |
| name: run on linux | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: update-workspace | |
| run: | | |
| sudo apt -qq update | |
| sudo apt install --yes flatpak-builder appstream-util | |
| - name: build-project | |
| run: | | |
| sudo flatpak remote-add --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo | |
| sudo flatpak-builder repo com.github.dalerank.akhenaten.json --install-deps-from=flathub --keep-build-dirs | |
| flatpak build-export export repo | |
| flatpak build-bundle export akhenaten.flatpak com.github.dalerank.akhenaten --runtime-repo=https://flathub.org/repo/flathub.flatpakrepo | |
| - uses: actions/upload-artifact@v6 | |
| with: | |
| name: akhenaten.flatpak | |
| path: akhenaten.flatpak |