23 lines
527 B
YAML
23 lines
527 B
YAML
|
name: Build Flatpak
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [ main ]
|
||
|
pull_request:
|
||
|
branches: [ main ]
|
||
|
|
||
|
jobs:
|
||
|
flatpak-builder:
|
||
|
name: "Flatpak Builder"
|
||
|
runs-on: ubuntu-latest
|
||
|
container:
|
||
|
image: bilelmoussaoui/flatpak-github-actions:kde-5.15-23.08
|
||
|
options: --privileged
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- uses: flatpak/flatpak-github-actions/flatpak-builder@v6
|
||
|
with:
|
||
|
bundle: qocker.flatpak
|
||
|
manifest-path: sa.sy.Qocker.json
|
||
|
cache-key: flatpak-builder-${{ github.sha }}
|