-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
35 lines (35 loc) · 1.01 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
name: "Build Arch Packages"
description: "Build ArchLinux packages in Docker container and optionally update package repository"
branding:
icon: package
color: gray-dark
inputs:
package_name:
description: "Name of the package to build"
required: true
gpg_private_key:
description: "GPG private key for package signing"
required: true
gpg_passphrase:
description: "Passphrase for the GPG private key"
required: true
pkgs_path:
description: "Path to the directory containing package subdirectories (optional)"
required: false
default: "."
repo_name:
description: "Repository name (optional, for repository update)"
required: false
repo_path:
description: "Repository path (optional, for repository update)"
required: false
runs:
using: "docker"
image: "Dockerfile"
args:
- ${{ inputs.package_name }}
- ${{ inputs.gpg_private_key }}
- ${{ inputs.gpg_passphrase }}
- ${{ inputs.pkgs_path }}
- ${{ inputs.repo_name }}
- ${{ inputs.repo_path }}