-
Notifications
You must be signed in to change notification settings - Fork 13
/
action.yml
44 lines (44 loc) · 1.24 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
name: "Github pages APT repo"
description: "Setup and manage APT repo on Github pages"
inputs:
github_token:
description: "Github token with commit and push scope"
required: true
repo_supported_arch:
description: "Newline-delimited list of supported architecture"
required: true
repo_supported_version:
description: "Newline-delimited list of supported (linux) version"
required: true
file:
description: "Newline-delimited list of .deb files"
required: true
file_target_version:
description: "Newline-delimited list of version target of supplied .deb file"
required: true
public_key:
description: "GPG public key for apt repo"
required: false
private_key:
description: "GPG private key for signing apt repo"
required: true
key_passphrase:
description: "Passphrase of GPG private key"
required: false
page_branch:
description: "Branch of Github pages"
required: false
default: "gh-pages"
repo_folder:
description: "Location of APT repo folder relative to root of Github pages"
required: false
default: "repo"
debug:
description: "Print debug log"
required: false
runs:
using: "docker"
image: "Dockerfile"
branding:
icon: "upload-cloud"
color: "red"