I can't seem to include any folders in the archive files #1935
-
Hello, after 3 years, after the bot notified me about this issue, I wanted to try Goreleaser again. Downloaded the latest version. (version After trying many combinations, I simply could not, include any folders that I wanted.
I even added a random file in Here is the test config I used. files:
# main.go works
- main.go
# random/file.txt does NOT work
- random/file.txt
# **/*, includes dist folder and ignores every other folder, have to quote the string
- '**/*'
# ./public/* does NOT work
- ./public/* The command I use to build and archive the project: Maybe related to #1889? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
You're building on windows right? I think that might be the issue, we recently changed our globbing library... cc/ @djgilcrease |
Beta Was this translation helpful? Give feedback.
-
FWIW, due to a go "bug", archiving from windows will not retain the binaries permissions correctly... that said, not sure if its even worth investigating this further check #1947 |
Beta Was this translation helpful? Give feedback.
FWIW, due to a go "bug", archiving from windows will not retain the binaries permissions correctly...
that said, not sure if its even worth investigating this further
check #1947