2022-08-10 17:05:23 +00:00
|
|
|
name: Build flatpak
|
2022-08-10 17:00:23 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [main]
|
|
|
|
pull_request:
|
|
|
|
jobs:
|
|
|
|
flatpak:
|
|
|
|
name: "Flatpak"
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container:
|
2022-08-10 17:05:23 +00:00
|
|
|
image: bilelmoussaoui/flatpak-github-actions:gnome-nightly
|
2022-08-10 17:00:23 +00:00
|
|
|
options: --privileged
|
|
|
|
steps:
|
2022-08-10 17:02:21 +00:00
|
|
|
- name: Checkout
|
2022-08-10 17:03:02 +00:00
|
|
|
uses: actions/checkout@v3.0.2
|
2022-08-10 17:02:21 +00:00
|
|
|
- uses: bilelmoussaoui/flatpak-github-actions/flatpak-builder@v4
|
|
|
|
with:
|
|
|
|
bundle: palette.flatpak
|
2022-08-10 17:02:42 +00:00
|
|
|
manifest-path: com.github.AdwCustomizerTeam.AdwCustomizer.json
|
2022-08-10 17:02:21 +00:00
|
|
|
cache-key: flatpak-builder-${{ github.sha }}
|