fix: syntax on action.yml
This commit is contained in:
+15
-15
@@ -1,36 +1,36 @@
|
|||||||
# https://help.github.com/en/articles/metadata-syntax-for-github-actions
|
# https://help.github.com/en/articles/metadata-syntax-for-github-actions
|
||||||
name: "Arch Linux's package action"
|
name: "Arch Linux's package action"
|
||||||
description: "GitHub Action to run Arch Linux's package tools"
|
description: "GitHub Action to run Arch Linux's package tools"
|
||||||
author: "datakrama"
|
author: 'datakrama'
|
||||||
branding:
|
branding:
|
||||||
icon: "package"
|
icon: 'package'
|
||||||
color: "green"
|
color: 'green'
|
||||||
|
|
||||||
inputs:
|
inputs:
|
||||||
path:
|
path:
|
||||||
description: "Location for this action to run"
|
description: 'Location for this action to run'
|
||||||
default: ""
|
default: ''
|
||||||
required: false
|
required: false
|
||||||
updpkgsums:
|
updpkgsums:
|
||||||
description: "Update checksums on PKGBUILD"
|
description: 'Update checksums on PKGBUILD'
|
||||||
default: "false"
|
default: 'false'
|
||||||
required: false
|
required: false
|
||||||
srcinfo:
|
srcinfo:
|
||||||
description: "Generate new .SRCINFO"
|
description: 'Generate new .SRCINFO'
|
||||||
default: "false"
|
default: 'false'
|
||||||
required: false
|
required: false
|
||||||
flags:
|
flags:
|
||||||
description: "Extra flags for makepkg"
|
description: 'Extra flags for makepkg'
|
||||||
default: "-cfs --noconfirm"
|
default: '-cfs --noconfirm'
|
||||||
required: false
|
required: false
|
||||||
namcap:
|
namcap:
|
||||||
description: "Validate package with namcap"
|
description: 'Validate package with namcap'
|
||||||
default: "true"
|
default: 'true'
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
runs:
|
runs:
|
||||||
using: "docker"
|
using: 'docker'
|
||||||
image: "ghcr.io/datakrama/archlinux-package-action:1"
|
image: 'docker://ghcr.io/datakrama/archlinux-package-action:1'
|
||||||
args:
|
args:
|
||||||
- ${{ inputs.path }}
|
- ${{ inputs.path }}
|
||||||
- ${{ inputs.updpkgsums }}
|
- ${{ inputs.updpkgsums }}
|
||||||
|
|||||||
Reference in New Issue
Block a user