Skip to content

Commit 15ba9f5

Browse files
committed
Update README.md
1 parent 7ba867f commit 15ba9f5

File tree

1 file changed

+7
-11
lines changed

1 file changed

+7
-11
lines changed

README.md

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,15 @@
22

33
This action can publish an AUR package.
44

5-
## Requirements
6-
7-
This action only modifies existing AUR package and publish it. Make sure targeted package exists first.
8-
95
## Inputs
106

117
### `pkgname`
128

139
**Required** The AUR package name you want to update.
1410

15-
### `pkgver`
11+
### `pkgbuild`
1612

17-
**Required** The AUR package version you want to update.
13+
**Required** Path to PKGBUILD file.
1814

1915
### `commit_username`
2016

@@ -28,6 +24,9 @@ This action only modifies existing AUR package and publish it. Make sure targete
2824

2925
**Required** Your private key with access to AUR package.
3026

27+
### `commit_message`
28+
29+
**Optional** Commit message to use when creating the new commit.
3130

3231
## Example usage
3332

@@ -47,12 +46,9 @@ jobs:
4746
uses: KSXGitHub/github-actions-deploy-aur@master
4847
with:
4948
pkgname: my-awesome-package
50-
pkgver: 1.2.3
49+
pkgbuild: ./PKGBUILD
5150
commit_username: 'Github Action Bot'
5251
commit_email: [email protected]
5352
ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }}
53+
commit_message: Update AUR package
5454
```
55-
56-
## Thanks
57-
58-
This repository is a fork of https://github.com/guumaster/aur-publish-docker-action.git

0 commit comments

Comments
 (0)