Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/taskgraph/transforms/task.py
Original file line number Diff line number Diff line change
Expand Up @@ -338,8 +338,9 @@ def verify_index(config, index):
# artifacts to extract from the task image after completion
Optional("artifacts"): [
{
# type of artifact -- simple file, or recursive directory
"type": Any("file", "directory"),
# type of artifact -- simple file, or recursive directory,
# or a volume mounted directory.
"type": Any("file", "directory", "volume"),
# task image path from which to read artifact
"path": str,
# name of the produced artifact (root of the names for
Expand Down
Loading