added the possibility to start the execution of the workflow from the make tar step

This commit is contained in:
Miriam Baglioni 2024-04-18 14:19:55 +02:00
parent ec55a22091
commit fcec4b4225
2 changed files with 1 additions and 8 deletions

View File

@ -24,18 +24,10 @@
<name>metadata</name>
<description> the metadata associated to the deposition</description>
</property>
<property>
<name>depositionType</name>
<description>the type of deposition we want to perform. "new" for brand new deposition, "version" for a new version of a published deposition (in this case the concept record id must be provided), "upload" to upload content to an open deposition for which we already have the deposition id (in this case the deposition id should be provided)</description>
</property>
<property>
<name>conceptRecordId</name>
<description>for new version, the id of the record for the old deposition</description>
</property>
<property>
<name>depositionId</name>
<description>the depositionId of a deposition open that has to be added content</description>
</property>
<property>
<name>sparkDriverMemory</name>
<description>memory for driver process</description>

View File

@ -141,6 +141,7 @@
<decision name="only_upload">
<switch>
<case to="send_zenodo">${wf:conf('onlyUpload') eq true}</case>
<case to="make_archive">${wf:conf('makeArchive') eq true}</case>
<default to="reset_outputpath"/>
</switch>
</decision>