mirror of
https://github.com/Rafostar/clapper.git
synced 2025-08-30 16:02:00 +02:00
26 lines
629 B
YAML
26 lines
629 B
YAML
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
name: "Flatpak"
|
|
jobs:
|
|
flatpak:
|
|
name: "Flatpak"
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: bilelmoussaoui/flatpak-github-actions:gnome-40
|
|
options: --privileged
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
submodules: recursive
|
|
- uses: bilelmoussaoui/flatpak-github-actions/flatpak-builder@v3
|
|
name: "Build"
|
|
with:
|
|
bundle: com.github.rafostar.Clapper.flatpak
|
|
manifest-path: pkgs/flatpak/com.github.rafostar.Clapper.json
|
|
cache-key: flatpak-builder-${{ github.sha }}
|