From 7939555e1e39679fc3110539c77d3ee2402988ba Mon Sep 17 00:00:00 2001 From: Rees Pozzi Date: Thu, 7 May 2026 12:17:16 +0100 Subject: [PATCH] Update ado_artifacts_build.yml --- .github/workflows/ado_artifacts_build.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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