File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 :
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ pkgname=$INPUT_PKGNAME
77pkgbuild=$INPUT_PKGBUILD
88assets=$INPUT_ASSETS
99updpkgsums=$INPUT_UPDPKGSUMS
10- makepkg= $INPUT_MAKEPKG
10+ test= $INPUT_TEST
1111commit_username=$INPUT_COMMIT_USERNAME
1212commit_email=$INPUT_COMMIT_EMAIL
1313ssh_private_key=$INPUT_SSH_PRIVATE_KEY
@@ -79,7 +79,7 @@ if [ "$updpkgsums" == "true" ]; then
7979 echo ' ::endgroup::'
8080fi
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
You can’t perform that action at this time.
0 commit comments