mirror of
https://github.com/cookiengineer/audacity
synced 2025-04-29 15:19:44 +02:00
Closes https://github.com/tenacityteam/tenacity/issues/493 Signed-off-by: TheEvilSkeleton <theevilskeleton@riseup.net>
26 lines
632 B
YAML
26 lines
632 B
YAML
name: Packaging
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
pull_request:
|
|
jobs:
|
|
flatpak:
|
|
name: "Flatpak"
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: bilelmoussaoui/flatpak-github-actions:gnome-40
|
|
options: --privileged
|
|
strategy:
|
|
matrix:
|
|
arch: [x86_64, aarch64]
|
|
fail-fast: false
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
submodules: true
|
|
- uses: bilelmoussaoui/flatpak-github-actions/flatpak-builder@v3
|
|
with:
|
|
bundle: tenacity.flatpak
|
|
manifest-path: packaging/flatpak/org.tenacity.Tenacity.json
|
|
cache-key: flatpak-builder-${{ github.sha }}
|