-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (34 loc) · 936 Bytes
/
ayugram.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
on:
push:
workflow_dispatch:
name: CI
jobs:
flatpak:
name: 'Flatpak'
runs-on: ubuntu-latest
container:
image: bilelmoussaoui/flatpak-github-actions:freedesktop-23.08
options: --privileged
steps:
- uses: actions/checkout@v3
with:
submodules: 'true'
- name: Restore cache
id: cache
uses: actions/cache/restore@v3
with:
path: .flatpak-builder
key: ayugram-flatpak-${{ github.sha }}
restore-keys: ayugram-flatpak-
- uses: flatpak/flatpak-github-actions/[email protected]
with:
bundle: ayugram.flatpak
manifest-path: io.github.ayugram.TDesktop.yml
cache: false
- name: Save cache
id: cache-save
uses: actions/cache/save@v3
if: always()
with:
path: .flatpak-builder
key: ${{ steps.cache.outputs.cache-primary-key }}