mirror of
https://github.com/Rafostar/clapper.git
synced 2025-08-29 23:32:04 +02:00
Update GitHub Flatpak builds to latest runtime version, add new libs that we need and remove the ones that are not needed anymore.
41 lines
976 B
YAML
41 lines
976 B
YAML
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
name: "Flatpak"
|
|
jobs:
|
|
flatpak:
|
|
name: "Flatpak"
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 600
|
|
container:
|
|
image: bilelmoussaoui/flatpak-github-actions:gnome-45
|
|
options: --privileged
|
|
strategy:
|
|
matrix:
|
|
arch: [x86_64, aarch64]
|
|
fail-fast: false
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
submodules: recursive
|
|
- name: Install Docker
|
|
run: |
|
|
dnf -y install docker
|
|
- name: Setup QEMU
|
|
id: qemu
|
|
uses: docker/setup-qemu-action@v1
|
|
with:
|
|
platforms: arm64
|
|
- 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 }}
|