This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Stage new contribution | |
on: | |
workflow_dispatch: | |
inputs: | |
resource_id: | |
description: "Bioimage.io resource identifier" | |
required: true | |
type: string | |
package_url: | |
description: "Download URL of the resource package zip-file" | |
required: true | |
type: string | |
concurrency: ${{inputs.resource_id}} | |
jobs: | |
call: | |
uses: ./.github/workflows/stage_call.yaml | |
with: | |
resource_id: ${{inputs.resource_id}} | |
package_url: ${{inputs.package_url}} | |
S3_HOST: ${{vars.S3_HOST}} | |
S3_BUCKET: ${{vars.S3_BUCKET}} | |
S3_FOLDER: ${{vars.S3_FOLDER}} | |
secrets: inherit |