ci: add ci
This commit is contained in:
parent
666ba9d62d
commit
d1518f3f05
36
. github/workflows/build.yml
Normal file
36
. github/workflows/build.yml
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
name: Build
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ "main" ]
|
||||||
|
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/pagee.codeberg.Imaginer.Imaginer.json
|
||||||
|
cache-key: flatpak-builder-${{ github.sha }}
|
||||||
|
arch: ${{ matrix.arch }}
|
Loading…
Reference in New Issue
Block a user