publish charismatic-whale #123
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: publish | |
run-name: publish ${{inputs.resource_id}} | |
on: | |
workflow_dispatch: | |
inputs: | |
resource_id: | |
description: "bioimage.io resource concept ID (e.g. 'affable-shark')" | |
required: true | |
type: string | |
stage_number: | |
description: DEPRECATED; will be removed soon | |
required: false | |
default: -1 | |
type: number | |
reviewer: | |
description: GitHub account name of bioimage.io maintainer accepting this resource version | |
required: false | |
default: 'auto detect' | |
type: string | |
sandbox: | |
description: Publish within sandbox | |
required: false | |
default: false | |
type: boolean | |
concurrency: ${{inputs.sandbox}}-${{inputs.resource_id}} | |
jobs: | |
call: | |
uses: bioimage-io/collection/.github/workflows/publish_call.yaml@main | |
with: | |
concept_id: ${{inputs.resource_id}} | |
reviewer: ${{inputs.reviewer == 'auto detect' && format('github|{0}', github.actor_id) || inputs.reviewer}} | |
environment_name: ${{inputs.sandbox && 'sandbox' || 'production'}} | |
secrets: inherit |