From 562587846a3abdc53b29be4a68117e2f82b298e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Dzi=C4=99giel?= Date: Thu, 24 Jun 2021 19:34:26 +0200 Subject: [PATCH] Add flatpak testing workflow Builds nightly with latest GStreamer from git (no patches applied) --- .github/workflows/flatpak-testing.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/flatpak-testing.yml diff --git a/.github/workflows/flatpak-testing.yml b/.github/workflows/flatpak-testing.yml new file mode 100644 index 00000000..40f69d65 --- /dev/null +++ b/.github/workflows/flatpak-testing.yml @@ -0,0 +1,21 @@ +on: + schedule: + - cron: "0 0 * * *" +name: "Flatpak Testing" +jobs: + flatpak: + name: "Flatpak" + runs-on: ubuntu-latest + container: + image: bilelmoussaoui/flatpak-github-actions:gnome-40 + options: --privileged + steps: + - uses: actions/checkout@v2 + with: + submodules: recursive + - uses: bilelmoussaoui/flatpak-github-actions/flatpak-builder@v3 + name: "Build" + with: + bundle: com.github.rafostar.Clapper.flatpak + manifest-path: pkgs/flatpak/com.github.rafostar.Clapper-testing.json + cache-key: flatpak-builder-${{ github.sha }}