We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f72173 commit bb07eeeCopy full SHA for bb07eee
.github/workflows/pipeline.yaml
@@ -15,9 +15,13 @@ on:
15
- main
16
17
env:
18
+ # CI/CD variables
19
CONTAINER_NAME: ${{ github.repository }}
20
CONTAINER_REGISTRY_GHCR: ghcr.io
21
CONTAINER_PLATFORMS: linux/amd64,linux/arm64/v8
22
+ # Tool versions
23
+ # See: https://github.com/azure/azure-cli/releases
24
+ AZURE_CLI_VERSION: 2.68.0
25
# https://github.com/docker/buildx/releases
26
BUILDX_VERSION: 0.17.1
27
@@ -113,7 +117,9 @@ jobs:
113
117
version: "0.5.x"
114
118
115
119
- name: Set up Azure CLI
116
- run: curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash
120
+ run: |
121
+ curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash
122
+ sudo apt-get install azure-cli=${{ env.AZURE_CLI_VERSION }}-1~$(lsb_release -cs)
123
124
# - name: Login to Azure
125
# uses: Azure/[email protected]
0 commit comments