forked from OJFord/create-aur-release
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathaction.yml
28 lines (28 loc) · 894 Bytes
/
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
name: Update AUR Package
description: Create a AUR release on version bump
author: aksh1618
branding:
color: blue
icon: navigation-2
inputs:
tag_version_prefix:
description: The prefix of the version used in the tag. (`v` by default).
required: true
default: v
package_name:
description: The name of the AUR package to update.
required: true
commit_username:
description: The username to use when creating the new commit.
required: true
commit_email:
description: The email to use when creating the new commit.
required: true
ssh_private_key:
description: The SSH private key with access to the specified AUR package.
required: true
runs:
using: docker
image: Dockerfile
args:
- ${{ inputs.tag_version_prefix }} ${{ inputs.package_name }} ${{ inputs.commit_username }} ${{ inputs.commit_email }} ${{ inputs.ssh_private_key }}