Skip to content

On Tag

On Tag #2

Workflow file for this run

name: On Tag
on:
workflow_dispatch:
inputs:
override_git_describe:
type: string
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
jobs:
twine_upload:
uses: ./.github/workflows/TwineUpload.yml
secrets: inherit
with:
override_git_describe: ${{ inputs.override_git_describe || github.event.release.tag_name }}
staged_upload:
uses: ./.github/workflows/StagedUpload.yml
secrets: inherit
with:
override_git_describe: ${{ inputs.override_git_describe || github.event.release.tag_name }}