-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add optional repo update functionality
- Loading branch information
1 parent
57180d5
commit 0f3d7e8
Showing
4 changed files
with
80 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,35 @@ | ||
name: "Build Arch Packages" | ||
description: "Build ArchLinux packages in Docker container" | ||
description: "Build ArchLinux packages in Docker container and optionally update package repository" | ||
branding: | ||
icon: package | ||
color: gray-dark | ||
inputs: | ||
package_name: | ||
description: "Package name to build" | ||
description: "Name of the package to build" | ||
required: true | ||
gpg_private_key: | ||
description: "GPG private key for building" | ||
description: "GPG private key for package signing" | ||
required: true | ||
gpg_passphrase: | ||
description: "GPG passphrase for building" | ||
description: "Passphrase for the GPG private key" | ||
required: true | ||
pkgs_directory: | ||
description: "Directory of package subdirectories" | ||
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_directory }} | ||
- ${{ inputs.pkgs_path }} | ||
- ${{ inputs.repo_name }} | ||
- ${{ inputs.repo_path }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters