diff --git a/. github/workflows/build.yml b/. github/workflows/build.yml new file mode 100644 index 0000000..10a097c --- /dev/null +++ b/. github/workflows/build.yml @@ -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 }} \ No newline at end of file