-
Notifications
You must be signed in to change notification settings - Fork 10
/
action.yml
72 lines (68 loc) · 1.73 KB
/
action.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# SPDX-License-Identifier: GPL-3.0-or-later
# SPDX-FileCopyrightText: 2022 Andy Holmes <[email protected]>
name: Flatter
description: Build and host a Flatpak repository
author: Andy Holmes
branding:
icon: package
color: brown
inputs:
files:
description: >
A list of paths to Flatpak manifests.
required: true
arch:
description: >
The CPU architecture to build for.
default: x86_64
required: false
gpg-sign:
description: >
The fingerprint of a GPG key to sign the repository with.
required: false
cache-key:
description: >
An optional cache key.
default: 'flatter'
required: false
# Deployment Options
upload-bundles:
description: >
Upload each application as an artifact.
default: false
required: false
upload-pages-artifact:
description: >
Upload the repository as a GitHub Pages artifact.
default: false
required: false
upload-pages-includes:
description: >
A list of files to include in the GitHub Pages artifact.
required: false
# Test Options
run-tests:
description: >
Build and run tests in a Flatpak environment.
required: false
default: false
test-config-opts:
description: >
Extra command-line options for `meson setup`
required: false
test-modules:
description: >
Path to a manifest of dependencies, relative to the root manifest.
required: false
# Advanced Options
flatpak-builder-args:
description: >
Extra command-line options for `flatpak-builder`.
required: false
flatpak-build-bundle-args:
description: >
Extra command-line options for `flatpak build-bundle`.
required: false
runs:
using: node20
main: dist/index.js