File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,6 +11,36 @@ inputs:
1111 default : main
1212 type : string
1313
14+ azdo-org :
15+ description : AzDO org URL
16+ required : true
17+ type : string
18+
19+ azdo-pipeline-name :
20+ description : AzDO pipeline name
21+ required : true
22+ type : string
23+
24+ azdo-project :
25+ description : AzDO project name
26+ required : true
27+ type : string
28+
29+ azure-client-id :
30+ description : Azure client ID
31+ required : true
32+ type : string
33+
34+ azure-subscription-id :
35+ description : Azure subscription ID
36+ required : true
37+ type : string
38+
39+ azure-tenant-id :
40+ description : Azure tenant ID
41+ required : true
42+ type : string
43+
1444 # dist-tag:
1545 # description: Dist-tag
1646 # default: main
@@ -35,12 +65,12 @@ defaults:
3565 shell : bash
3666
3767env :
38- AZDO_ORG : ${{ vars.AZDO_ORG }}
39- AZDO_PIPELINE_NAME : ${{ vars.AZDO_PIPELINE_NAME }}
40- AZDO_PROJECT : ${{ vars.AZDO_PROJECT }}
41- AZURE_CLIENT_ID : ${{ vars.AZURE_CLIENT_ID }}
42- AZURE_SUBSCRIPTION_ID : ${{ vars.AZURE_SUBSCRIPTION_ID }}
43- AZURE_TENANT_ID : ${{ vars.AZURE_TENANT_ID }}
68+ AZDO_ORG : ${{ inputs.azdo-org }}
69+ AZDO_PIPELINE_NAME : ${{ inputs.azdo-pipeline-name }}
70+ AZDO_PROJECT : ${{ inputs.azdo-project }}
71+ AZURE_CLIENT_ID : ${{ inputs.azure-client-id }}
72+ AZURE_SUBSCRIPTION_ID : ${{ inputs.azure-subscription-id }}
73+ AZURE_TENANT_ID : ${{ inputs.azure-tenant-id }}
4474
4575runs :
4676 using : composite
Original file line number Diff line number Diff line change @@ -155,6 +155,12 @@ jobs:
155155 uses : ./.github/actions/azdo-build
156156 with :
157157 artifact-name : azdo-artifact
158+ azdo-org : ${{ vars.AZDO_ORG }}
159+ azdo-pipeline-name : ${{ vars.AZDO_PIPELINE_NAME }}
160+ azdo-project : ${{ vars.AZDO_PROJECT }}
161+ azure-client-id : ${{ vars.AZURE_CLIENT_ID }}
162+ azure-subscription-id : ${{ vars.AZURE_SUBSCRIPTION_ID }}
163+ azure-tenant-id : ${{ vars.AZURE_TENANT_ID }}
158164 branch-name : ${{ steps.get-branch-name.outputs.branch-name }}
159165
160166 - name : Extract artifact (bundle)
You can’t perform that action at this time.
0 commit comments