Skip to content

Commit 89cbe4c

Browse files
committed
rename makepkg option to 'test'
1 parent b1fc840 commit 89cbe4c

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ Glob patterns will be expanded by bash when copying the files to the repository.
2121

2222
**Optional** Update checksums using `updpkgsums`.
2323

24-
### `makepkg`
24+
### `test`
2525

26-
**Optional** Build package using `makepkg` before deploy.
26+
**Optional** Check that PKGBUILD could be built.
2727

2828
### `commit_username`
2929

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ inputs:
1919
description: 'Update checksums using `updpkgsums`'
2020
required: false
2121
default: 'false'
22-
makepkg:
23-
description: 'Build package using `makepkg` before deploy'
22+
test:
23+
description: 'Check that PKGBUILD could be built'
2424
required: false
2525
default: 'false'
2626
commit_username:

build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ pkgname=$INPUT_PKGNAME
77
pkgbuild=$INPUT_PKGBUILD
88
assets=$INPUT_ASSETS
99
updpkgsums=$INPUT_UPDPKGSUMS
10-
makepkg=$INPUT_MAKEPKG
10+
test=$INPUT_TEST
1111
commit_username=$INPUT_COMMIT_USERNAME
1212
commit_email=$INPUT_COMMIT_EMAIL
1313
ssh_private_key=$INPUT_SSH_PRIVATE_KEY
@@ -79,7 +79,7 @@ if [ "$updpkgsums" == "true" ]; then
7979
echo '::endgroup::'
8080
fi
8181

82-
if [ "$makepkg" == "true" ]; then
82+
if [ "$test" == "true" ]; then
8383
echo '::group::Building package with makepkg'
8484
cd /tmp/local-repo/
8585
makepkg --clean --cleanbuild --nodeps

0 commit comments

Comments
 (0)