24 lines
591 B
YAML
24 lines
591 B
YAML
name: spot-snapshots
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
pull_request:
|
|
branches: [master]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
flatpak-builder:
|
|
name: "Flatpak Builder"
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: bilelmoussaoui/flatpak-github-actions:gnome-42
|
|
options: --privileged
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: bilelmoussaoui/flatpak-github-actions/flatpak-builder@v4
|
|
with:
|
|
bundle: "spot.flatpak"
|
|
manifest-path: "dev.alextren.Spot.snapshots.json"
|
|
cache-key: flatpak-builder-${{ github.sha }}
|
|
run-tests: true
|