forked from Taiko2k/Tauon
-
-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (30 loc) · 957 Bytes
/
build_Flatpak.yaml
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
on:
push:
# branches: [main]
pull_request:
name: CI
jobs:
flatpak:
name: "Flatpak"
runs-on: ubuntu-24.04
container:
image: bilelmoussaoui/flatpak-github-actions:freedesktop-24.08
options: --privileged
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Clone Flatpak repo
run: |
git clone https://github.com/C0rn3j/com.github.taiko2k.tauonmb.git tauon-flatpak
cd tauon-flatpak; git checkout flatfix
# - name: Install dependencies
# run: |
# apt-get update
# apt-get install -y flatpak-builder
# https://github.com/marketplace/actions/flatpak-builder
- name: Build Flatpak
uses: flatpak/flatpak-github-actions/flatpak-builder@v6
with:
bundle: tauonmb.flatpak
manifest-path: tauon-flatpak/com.github.taiko2k.tauonmb.json
cache-key: flatpak-builder-${{ github.sha }}