Skip to content

Commit 27afdb0

Browse files
authored
Add basic flatpak github action
1 parent 70083ff commit 27afdb0

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/flatpak.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: flatpak
2+
3+
on:
4+
release:
5+
types: [published]
6+
7+
jobs:
8+
flatpak:
9+
name: "Flatpak"
10+
runs-on: ubuntu-latest
11+
container:
12+
image: bilelmoussaoui/flatpak-github-actions:gnome-44
13+
options: --privileged
14+
steps:
15+
- uses: actions/checkout@v4
16+
- uses: flatpak/flatpak-github-actions/flatpak-builder@v6
17+
with:
18+
bundle: mod-desktop.flatpak
19+
manifest-path: audio.mod.mod-desktop.yaml
20+
cache-key: flatpak-builder-${{ github.sha }}

0 commit comments

Comments
 (0)