Skip to content

stage affable-shark #35

stage affable-shark

stage affable-shark #35

Workflow file for this run

name: stage
run-name: stage ${{inputs.resource_id}}
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:
stage:
uses: bioimage-io/collection/.github/workflows/stage_call.yaml@main
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
test:
needs: stage
uses: bioimage-io/collection/.github/workflows/test_call.yaml@main
with:
resource_id: ${{inputs.resource_id}}
version: ${{needs.stage.outputs.version}}
S3_HOST: ${{vars.S3_HOST}}
S3_BUCKET: ${{vars.S3_BUCKET}}
S3_FOLDER: ${{vars.S3_FOLDER}}
secrets: inherit