File tree Expand file tree Collapse file tree 3 files changed +19
-14
lines changed Expand file tree Collapse file tree 3 files changed +19
-14
lines changed Original file line number Diff line number Diff line change 9
9
using : " composite"
10
10
steps :
11
11
- run : |
12
- sed "" ${{ inputs.varFilePath }} >> $GITHUB_ENV
13
- sed "" ${{ inputs.varFilePath }} >> $GITHUB_OUTPUT
12
+ sed "" ${{ inputs.varFilePath }} >> $GITHUB_ENV
14
13
shell: bash
Original file line number Diff line number Diff line change @@ -48,19 +48,22 @@ jobs:
48
48
azCliVersion : ${{steps.set-az-cli-version.outputs.azCliVersion}}
49
49
runs-on : ubuntu-latest
50
50
steps :
51
+
52
+ - name : Set AZ CLI Version and save in variable azCliVersion
53
+ uses : ./.github/actions/setvars
54
+ with :
55
+ varFilePath : ./.github/variables/vm-dependencies.env
56
+ - name : Output Az CLi version
57
+ id : set-az-cli-version
58
+ run : |
59
+ echo "azCliVersion=${azCliVersion}" >> $GITHUB_OUTPUT
51
60
- name : Get versions of external dependencies
52
61
id : get-external-dependencies-version
53
62
run : |
54
63
curl -Lo external-deps-versions.properties https://raw.githubusercontent.com/Azure/azure-javaee-iaas/main/external-deps-versions.properties
55
64
source external-deps-versions.properties
56
65
echo "bicepVersion=${BICEP_VERSION}" >> $GITHUB_ENV
57
66
echo "refArmttk=${ARM_TTK_REFERENCE}" >> $GITHUB_ENV
58
-
59
- - name : Set AZ CLI Version
60
- id : set-az-cli-version
61
- uses : ./.github/actions/setvars
62
- with :
63
- varFilePath : ./.github/variables/vm-dependencies.env
64
67
- name : Setup environment variables
65
68
id : setup-env-variables-based-on-dispatch-event
66
69
run : |
Original file line number Diff line number Diff line change @@ -60,19 +60,22 @@ jobs:
60
60
testBranchNameForArtifactsLocation : ${{ steps.setup-env-variables-based-on-dispatch-event.outputs.testBranchNameForArtifactsLocation }}
61
61
azCliVersion : ${{steps.set-az-cli-version.outputs.azCliVersion}}
62
62
steps :
63
+
64
+ - name : Set AZ CLI Version
65
+ uses : ./.github/actions/setvars
66
+ with :
67
+ varFilePath : ./.github/variables/vm-dependencies.env
68
+ - name : Output Az CLi version
69
+ id : set-az-cli-version
70
+ run : |
71
+ echo "azCliVersion=${azCliVersion}" >> $GITHUB_OUTPUT
63
72
- name : Get versions of external dependencies
64
73
id : get-external-dependencies-version
65
74
run : |
66
75
curl -Lo external-deps-versions.properties https://raw.githubusercontent.com/Azure/azure-javaee-iaas/main/external-deps-versions.properties
67
76
source external-deps-versions.properties
68
77
echo "bicepVersion=${BICEP_VERSION}" >> $GITHUB_ENV
69
78
echo "refArmttk=${ARM_TTK_REFERENCE}" >> $GITHUB_ENV
70
-
71
- - name : Set AZ CLI Version
72
- id : set-az-cli-version
73
- uses : ./.github/actions/setvars
74
- with :
75
- varFilePath : ./.github/variables/vm-dependencies.env
76
79
- name : Setup environment variables
77
80
id : setup-env-variables-based-on-dispatch-event
78
81
run : |
You can’t perform that action at this time.
0 commit comments