mirror of
https://github.com/HarmonyHoney/ROTA.git
synced 2026-07-18 00:56:58 +00:00
24 lines
575 B
YAML
24 lines
575 B
YAML
name: Flatpak
|
|
on:
|
|
push:
|
|
branches:
|
|
- master4
|
|
pull_request:
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
flatpak:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: ghcr.io/flathub-infra/flatpak-github-actions:freedesktop-24.08
|
|
options: --privileged
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: flatpak/flatpak-github-actions/flatpak-builder@v6
|
|
with:
|
|
bundle: rota.flatpak
|
|
manifest-path: linux/net.hhoney.rota.yml
|
|
cache-key: "flatpak-builder-${{ github.sha }}"
|