1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-30 15:42:33 +02:00

Merge pull request from tenacityteam/flatpak-id-fix

Fix aarch64 Flatpak builds

Signed-off-by: Emily Mabrey <emabrey@tenacityaudio.org>
Reference-to: https://github.com/tenacityteam/tenacity/pull/570
This commit is contained in:
Emily Mabrey 2021-09-04 01:42:55 -04:00 committed by GitHub
commit fdf15b8366
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -18,8 +18,19 @@ jobs:
- uses: actions/checkout@v2
with:
submodules: true
- uses: bilelmoussaoui/flatpak-github-actions/flatpak-builder@v3
# Emulate to provide ARM support
- name: Install deps
run: |
dnf -y install docker ninja-build
- name: Set up QEMU
id: qemu
uses: docker/setup-qemu-action@v1
with:
image: tonistiigi/binfmt:latest
platforms: arm64
- uses: bilelmoussaoui/flatpak-github-actions/flatpak-builder@v4
with:
bundle: tenacity.flatpak
manifest-path: packaging/flatpak/org.tenacity.Tenacity.json
cache-key: flatpak-builder-${{ github.sha }}
arch: ${{ matrix.arch }}