remove cp of removed files #189
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
# pause | |
# 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 | |
# sandbox: | |
# description: Stage to sandbox | |
# required: false | |
# default: false | |
# type: boolean | |
# concurrency: ${{inputs.resource_id}} | |
# jobs: | |
# stage: | |
# uses: bioimage-io/collection/.github/workflows/stage_call.yaml@main | |
# with: | |
# concept_id: ${{inputs.resource_id}} | |
# package_url: ${{inputs.package_url}} | |
# environment_name ${{inputs.sandbox && 'sandbox' || 'production'}} | |
# secrets: inherit | |
# test: | |
# runs-on: ubuntu-latest | |
# needs: stage | |
# steps: | |
# - uses: actions/checkout@v4 | |
# - run: | | |
# gh workflow run test.yaml \ | |
# -f resource_id=${{inputs.resource_id}} \ | |
# -f version=${{needs.stage.outputs.version}} \ | |
# -f sandbox=${{inputs.sandbox}} | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |