From 10eb5102c19a1d877b890d52c1218e8a2ee1d645 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Dzi=C4=99giel?= Date: Fri, 27 Aug 2021 15:57:18 +0200 Subject: [PATCH] actions: Also build for aarch64 in nightly flatpak --- .github/workflows/flatpak-nightly.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/flatpak-nightly.yml b/.github/workflows/flatpak-nightly.yml index ce7b1d98..52d56d56 100644 --- a/.github/workflows/flatpak-nightly.yml +++ b/.github/workflows/flatpak-nightly.yml @@ -9,6 +9,9 @@ jobs: container: image: bilelmoussaoui/flatpak-github-actions:gnome-nightly options: --privileged + strategy: + matrix: + arch: [x86_64, aarch64] steps: - uses: actions/checkout@v2 with: @@ -19,3 +22,4 @@ jobs: bundle: com.github.rafostar.Clapper.flatpak manifest-path: pkgs/flatpak/com.github.rafostar.Clapper-testing.json cache-key: flatpak-builder-${{ github.sha }}-testing-${{ github.run_number }} + arch: ${{ matrix.arch }}