From 2642763394c284b50fbf60573e1d0f9cbd45e44f Mon Sep 17 00:00:00 2001 From: Thomas-Otavio Peulen Date: Mon, 7 Oct 2024 12:57:20 +0200 Subject: [PATCH] Add flatpak action --- .github/workflows/flatpak-build.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/flatpak-build.yml diff --git a/.github/workflows/flatpak-build.yml b/.github/workflows/flatpak-build.yml new file mode 100644 index 00000000..1c2d7d47 --- /dev/null +++ b/.github/workflows/flatpak-build.yml @@ -0,0 +1,19 @@ +on: + push: + branches: [main] + pull_request: +name: CI +jobs: + flatpak: + name: "Flatpak" + runs-on: ubuntu-latest + container: + image: bilelmoussaoui/flatpak-github-actions:freedesktop-20.08 + options: --privileged + steps: + - uses: actions/checkout@v4 + - uses: flatpak/flatpak-github-actions/flatpak-builder@v6 + with: + bundle: chisurf.flatpak + manifest-path: ./build_tools/flatpak/xyz.peulen.ChiSurf.yml + cache-key: flatpak-builder-${{ github.sha }}