We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed5b82a commit 7939555Copy full SHA for 7939555
1 file changed
.github/workflows/ado_artifacts_build.yml
@@ -2,6 +2,11 @@ name: Publish to Azure Artifacts
2
3
on:
4
workflow_dispatch:
5
+ inputs:
6
+ version:
7
+ description: 'Version to publish'
8
+ required: true
9
+ type: string
10
push:
11
tags:
12
- '*'
@@ -29,5 +34,5 @@ jobs:
29
34
env:
30
35
AZURE_DEVOPS_ARTIFACT_USERNAME: ${{ secrets.AZURE_DEVOPS_ARTIFACT_USERNAME }}
31
36
AZURE_DEVOPS_ARTIFACT_TOKEN: ${{ secrets.AZURE_DEVOPS_ARTIFACT_TOKEN }}
32
- RELEASE_VERSION: ${{ github.ref_name }}
37
+ RELEASE_VERSION: ${{ inputs.version || github.ref_name }}
33
38
shell: bash
0 commit comments