You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
When using buildkite-agent artifact download "dist/**/*" . to download all artifacts in a compiled dist folder that has successfully been uploaded using artifact_paths: "dist/**/*" in the pipeline.yml file, the files downloaded do not contain files such as dist/express.js or dist/worker.js.
NOTE: The above pattern does download all files that are contained in subdirectories, for example, dist/apps/express.js and dist/apps/worker.js are successfully downloaded with the above command.
Describe the solution you'd like
A solution that allows me to download files described above with the glob pattern dist/**/*. Otherwise, documentation to explain why this pattern does not work for buildkite-agent
Describe alternatives you've considered
I have found a workaround by using buildkite-agent artifact download "dist/**" ., however, unsure if this was intended behaviour or not.
Additional context
N/A
The text was updated successfully, but these errors were encountered:
hey there! this is somewhat of a running issue - there's a bunch of edge cases and gotchas with artifact uploading and downloading. we have some work planned to work on making this better - we'll keep this issue open until we do, but in the meantime, it looks like your workaround is sufficient, if not quite desirable.
Is your feature request related to a problem? Please describe.
When using
buildkite-agent artifact download "dist/**/*" .
to download all artifacts in a compileddist
folder that has successfully been uploaded usingartifact_paths: "dist/**/*"
in thepipeline.yml
file, the files downloaded do not contain files such asdist/express.js
ordist/worker.js
.This seems unexpected for the given glob pattern.
NOTE: The above pattern does download all files that are contained in subdirectories, for example, dist/apps/express.js and dist/apps/worker.js are successfully downloaded with the above command.
Describe the solution you'd like
A solution that allows me to download files described above with the glob pattern
dist/**/*
. Otherwise, documentation to explain why this pattern does not work forbuildkite-agent
Describe alternatives you've considered
I have found a workaround by using
buildkite-agent artifact download "dist/**" .
, however, unsure if this was intended behaviour or not.Additional context
N/A
The text was updated successfully, but these errors were encountered: