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
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.
I have found a workaround by using buildkite-agent artifact download "dist/**" ., however, unsure if this was intended behaviour or not.
The text was updated successfully, but these errors were encountered:
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.
I have found a workaround by using
buildkite-agent artifact download "dist/**" .
, however, unsure if this was intended behaviour or not.The text was updated successfully, but these errors were encountered: