Manual dispatch #19
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 dispatch | |
on: | |
workflow_dispatch: | |
inputs: | |
mumble_version: | |
description: "The version (tag or commit hash) of Mumble to build" | |
required: true | |
default: "latest" | |
docker_version: | |
description: "Docker image version, independent of mumble version" | |
required: true | |
default: "0" | |
publish: | |
description: "Whether the built image(s) shall be published to Dockerhub" | |
required: true | |
default: "false" | |
update_latest: | |
description: "Whether to update the 'latest' tag on Dockerhub" | |
required: true | |
default: "false" | |
jobs: | |
manual_dispatch: | |
uses: ./.github/workflows/build_and_publish.yml | |
with: | |
mumble_version: ${{ github.event.inputs.mumble_version }} | |
docker_version: ${{ github.event.inputs.docker_version }} | |
publish: ${{ github.event.inputs.publish == 'true' }} | |
update_latest: ${{ github.event.inputs.update_latest == 'true' }} | |
platforms: "linux/amd64,linux/arm64,linux/arm/v7,linux/arm/v8" | |
secrets: inherit |