Skip to content

Commit

Permalink
added aarch64 build
Browse files Browse the repository at this point in the history
  • Loading branch information
Nokse22 committed Jun 26, 2024
1 parent 0436258 commit 7baa613
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/flatpak.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,27 @@ jobs:
container:
image: bilelmoussaoui/flatpak-github-actions:gnome-44
options: --privileged
strategy:
matrix:
arch: [x86_64, aarch64]
# Don't fail the whole workflow if one architecture fails
fail-fast: false
steps:
- uses: actions/checkout@v4
# Docker is required by the docker/setup-qemu-action which enables emulation
- name: Install deps
if: ${{ matrix.arch != 'x86_64' }}
run: |
dnf -y install docker
- name: Set up QEMU
if: ${{ matrix.arch != 'x86_64' }}
id: qemu
uses: docker/setup-qemu-action@v2
with:
platforms: arm64
- uses: flatpak/flatpak-github-actions/flatpak-builder@v6
with:
bundle: io.github.nokse22.HighTide.flatpak
manifest-path: io.github.nokse22.HighTide.json
cache-key: flatpak-builder-${{ github.sha }}
arch: ${{ matrix.arch }}

0 comments on commit 7baa613

Please sign in to comment.