-
-
Notifications
You must be signed in to change notification settings - Fork 54
52 lines (52 loc) · 1.57 KB
/
flatpak.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
types: [ "review_requested", "ready_for_review" ]
workflow_dispatch:
name: Flatpak
permissions:
id-token: write
contents: read
jobs:
gnome-flatpak:
name: "GNOME on Flatpak"
runs-on: ubuntu-latest
if: ${{ github.event.pull_request.user.login != 'weblate' }}
container:
image: bilelmoussaoui/flatpak-github-actions:gnome-46
options: --privileged
strategy:
matrix:
arch: [x86_64]
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: flatpak/flatpak-github-actions/[email protected]
with:
bundle: org.nickvision.tubeconverter.gnome.flatpak
manifest-path: flatpak/org.nickvision.tubeconverter.gnome.json
cache-key: flatpak-builder-gnome-${{ github.sha }}
arch: ${{ matrix.arch }}
restore-cache: true
qt-flatpak:
name: "QT on Flatpak"
runs-on: ubuntu-latest
if: ${{ github.event.pull_request.user.login != 'weblate' }}
container:
image: bilelmoussaoui/flatpak-github-actions:kde-6.7
options: --privileged
strategy:
matrix:
arch: [x86_64]
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: flatpak/flatpak-github-actions/[email protected]
with:
bundle: org.nickvision.tubeconverter.qt.flatpak
manifest-path: flatpak/org.nickvision.tubeconverter.qt.json
cache-key: flatpak-builder-qt-${{ github.sha }}
arch: ${{ matrix.arch }}
restore-cache: true