From f45356bee9d5b0abbbebe81666657228d769c7c3 Mon Sep 17 00:00:00 2001 From: Dimitris Panokostas Date: Mon, 30 Oct 2023 17:09:59 +0100 Subject: [PATCH] Add flatpak workflow --- .github/workflows/flatpak.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/flatpak.yml diff --git a/.github/workflows/flatpak.yml b/.github/workflows/flatpak.yml new file mode 100644 index 000000000..581389d18 --- /dev/null +++ b/.github/workflows/flatpak.yml @@ -0,0 +1,23 @@ +name: flatpak + +on: + workflow_dispatch: + push: + branches: [preview] + pull_request: + +jobs: + flatpak: + name: "Flatpak" + runs-on: ubuntu-latest + container: + image: bilelmoussaoui/flatpak-github-actions:freedesktop-23.08 + options: --privileged + steps: + - uses: actions/checkout@v4 + - uses: flatpak/flatpak-github-actions/flatpak-builder@v6 + with: + bundle: amiberry.flatpak + manifest-path: ./flatpak/com.blitterstudio.amiberry.yml + cache-key: flatpak-builder-${{ github.sha }} + arch: x86_64