Skip to content
Snippets Groups Projects
Commit a25c759d authored by Mattia Mancini's avatar Mattia Mancini
Browse files

Add missing filename field to ingest object

parent 94f3ce00
No related branches found
No related tags found
No related merge requests found
......@@ -119,6 +119,9 @@ steps:
source: extract_sip_meta/ingest
- id: output_name
default: compressed
- id: file_name
source: compress/compressed
valueFrom: $(self.basename)
out:
- id: ingest
run: steps/format_ingest.cwl
......
......@@ -6,7 +6,8 @@ inputs:
- id: output_name
type: string
- id: file_name
type: string
outputs:
- id: ingest
type: Any
......@@ -16,6 +17,7 @@ expression: |
${
return { "ingest": {
"path": inputs.output_name,
"file_name": inputs.file_name,
"metadata": inputs.metadata
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment