Merge pull request 'Fix blank line will upload all files' (#12) from lunny/ignore_blank_file_line into main

Reviewed-on: https://gitea.com/actions/release-action/pulls/12
pull/16/head
Lunny Xiao 2 years ago
commit 21a5938ff2

@ -110,7 +110,10 @@ func getFiles(parentDir, files string) ([]string, error) {
lines := strings.Split(files, "\n") lines := strings.Split(files, "\n")
for _, line := range lines { for _, line := range lines {
line = strings.Trim(line, "'") line = strings.Trim(line, "'")
line = strings.Trim(line, `"`) line = strings.TrimSpace(strings.Trim(line, `"`))
if line == "" {
continue
}
if filepath.IsAbs(line) { if filepath.IsAbs(line) {
return nil, fmt.Errorf("file path %s is absolute", line) return nil, fmt.Errorf("file path %s is absolute", line)
} }

Loading…
Cancel
Save