diff --git a/.github/workflows/ado_artifacts_build.yml b/.github/workflows/ado_artifacts_build.yml index 36379e36..141cc049 100644 --- a/.github/workflows/ado_artifacts_build.yml +++ b/.github/workflows/ado_artifacts_build.yml @@ -2,6 +2,11 @@ name: Publish to Azure Artifacts on: workflow_dispatch: + inputs: + version: + description: 'Version to publish' + required: true + type: string push: tags: - '*' @@ -29,5 +34,5 @@ jobs: env: AZURE_DEVOPS_ARTIFACT_USERNAME: ${{ secrets.AZURE_DEVOPS_ARTIFACT_USERNAME }} AZURE_DEVOPS_ARTIFACT_TOKEN: ${{ secrets.AZURE_DEVOPS_ARTIFACT_TOKEN }} - RELEASE_VERSION: ${{ github.ref_name }} + RELEASE_VERSION: ${{ inputs.version || github.ref_name }} shell: bash