545ea746c3
Signed-off-by: 0xMRTT <0xmrtt@noreply.codeberg.org>
36 lines
906 B
YAML
36 lines
906 B
YAML
name: Build
|
|
|
|
on:
|
|
push:
|
|
branches: [ "master" ]
|
|
pull_request:
|
|
|
|
jobs:
|
|
flatpak:
|
|
name: Flatpak
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: bilelmoussaoui/flatpak-github-actions:gnome-44
|
|
options: --privileged
|
|
strategy:
|
|
matrix:
|
|
arch: [x86_64]
|
|
fail-fast: false
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
- name: Install dependencies
|
|
run: |
|
|
dnf -y install docker
|
|
- name: Set up QEMU
|
|
id: qemu
|
|
uses: docker/setup-qemu-action@v2.1.0
|
|
with:
|
|
platforms: arm64
|
|
- uses: flatpak/flatpak-github-actions/flatpak-builder@v6
|
|
with:
|
|
repository-name: gnome-44
|
|
bundle: bavarder.flatpak
|
|
manifest-path: build-aux/flatpak/page.codeberg.Imaginer.Imaginer.json
|
|
cache-key: flatpak-builder-${{ github.sha }}
|
|
arch: ${{ matrix.arch }} |