Manual distribution #75
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: Manual distribution | |
on: | |
workflow_dispatch: | |
inputs: | |
scheme: | |
required: true | |
type: string | |
description: "Scheme to distribute (e.g. main, release-5.9, ...)" | |
run-id: | |
required: true | |
type: string | |
description: 'GitHub Actions run id in swiftwasm/swiftwasm-build' | |
override-name: | |
type: string | |
description: 'Toolchain name' | |
display-name: | |
type: string | |
description: 'Display name for Darwin toolchain' | |
display-name-short: | |
type: string | |
description: 'Short display name for Darwin toolchain' | |
jobs: | |
manual-distribution: | |
uses: ./.github/workflows/distribute-toolchain.yml | |
secrets: inherit | |
with: | |
scheme: ${{ inputs.scheme }} | |
run-id: ${{ inputs.run-id }} | |
display-name: ${{ inputs.display-name }} | |
display-name-short: ${{ inputs.display-name-short }} | |
override-name: ${{ inputs.override-name }} |