mirror of
https://github.com/thegeeklab/wp-gitea-release.git
synced 2024-11-09 17:30:39 +00:00
using StringSlice instead of []string for Files
This commit is contained in:
parent
fcfb446e4c
commit
d4f663cf8f
4
DOCS.md
4
DOCS.md
@ -13,8 +13,7 @@ Sample configuration:
|
||||
publish:
|
||||
github_release:
|
||||
api_key: my_github_api_key
|
||||
files:
|
||||
- dist/*
|
||||
files: dist/*
|
||||
checksum: sha1
|
||||
```
|
||||
|
||||
@ -26,6 +25,7 @@ publish:
|
||||
api_key: my_github_api_key
|
||||
files:
|
||||
- dist/*
|
||||
- bin/binary.exe
|
||||
checksum:
|
||||
- md5
|
||||
- sha1
|
||||
|
2
main.go
2
main.go
@ -60,7 +60,7 @@ func main() {
|
||||
}
|
||||
|
||||
var files []string
|
||||
for _, glob := range vargs.Files {
|
||||
for _, glob := range vargs.Files.Slice() {
|
||||
globed, err := filepath.Glob(glob)
|
||||
if err != nil {
|
||||
fmt.Printf("Failed to glob %s\n", glob)
|
||||
|
Loading…
Reference in New Issue
Block a user