File tree Expand file tree Collapse file tree 1 file changed +14
-3
lines changed
Expand file tree Collapse file tree 1 file changed +14
-3
lines changed Original file line number Diff line number Diff line change 11name : Process Phenopackets and Upload to Zenodo
22
33on :
4- workflow_call : {} # Allow calling from another workflow
5-
4+ workflow_call : # Allow calling from another workflow
5+ inputs :
6+ LATEST_STORE :
7+ required : true
8+ type : string
9+ LATEST_HPO :
10+ required : true
11+ type : string
12+ secrets :
13+ ZENODO_ACCESS_TOKEN :
14+ required : true
15+ ZENODO_DEPOSITION_ID :
16+ required : true
617jobs :
718 process-phenopackets :
819 runs-on : ubuntu-latest
5566 env :
5667 ZENODO_ACCESS_TOKEN : ${{ secrets.ZENODO_ACCESS_TOKEN }}
5768 ZENODO_DEPOSITION_ID : ${{ secrets.ZENODO_DEPOSITION_ID }}
58- LATEST_STORE_TAG : ${{ inputs. LATEST_STORE }}
69+ LATEST_STORE_TAG : ${{ inputs.LATEST_STORE }}
5970 LATEST_HPO_TAG : ${{ inputs.LATEST_HPO }}
6071 run : python scripts/update_and_release_to_zenodo.py prompts/
6172
You can’t perform that action at this time.
0 commit comments