From 16a9546c975e8fa7ba083a732a6226537bc079ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Dzi=C4=99giel?= Date: Fri, 27 Aug 2021 15:51:21 +0200 Subject: [PATCH] actions: Build aarch64 flatpak --- .github/workflows/flatpak.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/flatpak.yml b/.github/workflows/flatpak.yml index 2c79106b..b17be85b 100644 --- a/.github/workflows/flatpak.yml +++ b/.github/workflows/flatpak.yml @@ -13,13 +13,17 @@ jobs: container: image: bilelmoussaoui/flatpak-github-actions:gnome-40 options: --privileged + strategy: + matrix: + arch: [x86_64, aarch64] steps: - uses: actions/checkout@v2 with: submodules: recursive - - uses: bilelmoussaoui/flatpak-github-actions/flatpak-builder@v3 + - uses: bilelmoussaoui/flatpak-github-actions/flatpak-builder@v4 name: "Build" with: bundle: com.github.rafostar.Clapper.flatpak manifest-path: pkgs/flatpak/com.github.rafostar.Clapper.json cache-key: flatpak-builder-${{ github.sha }} + arch: ${{ matrix.arch }}