File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ GitHub Actions to publish AUR package.
10
10
11
11
### ` pkgbuild `
12
12
13
- ** Required ** Path to PKGBUILD file. This file is often generated by prior steps.
13
+ ** Optional ** Path to PKGBUILD file. This file is often generated by prior steps. The default value is './PKGBUILD'
14
14
15
15
### ` assets `
16
16
Original file line number Diff line number Diff line change @@ -10,7 +10,8 @@ inputs:
10
10
required : false
11
11
pkgbuild :
12
12
description : ' Path to PKGBUILD file'
13
- required : true
13
+ default : ' ./PKGBUILD'
14
+ required : false
14
15
assets :
15
16
description : ' Newline-separated glob patterns for additional files to be added to the AUR repository'
16
17
required : false
Original file line number Diff line number Diff line change @@ -23,7 +23,6 @@ assert_non_empty() {
23
23
fi
24
24
}
25
25
26
- assert_non_empty inputs.pkgbuild " $pkgbuild "
27
26
assert_non_empty inputs.commit_username " $commit_username "
28
27
assert_non_empty inputs.commit_email " $commit_email "
29
28
assert_non_empty inputs.ssh_private_key " $ssh_private_key "
You can’t perform that action at this time.
0 commit comments