File tree Expand file tree Collapse file tree
pkg/fixtures/workflows/github/manifests/.github/workflows
template/workflows/manifests/.github/workflows Expand file tree Collapse file tree Original file line number Diff line number Diff line change 8484 # Checks out the repository this file is in
8585 - uses : actions/checkout@v3
8686
87+ # Logs into ACR
88+ - name : Log into ACR
89+ run : |
90+ az acr login -n ${{ env.AZURE_CONTAINER_REGISTRY }}
91+
8792 # Logs in with your Azure credentials
8893 - name : Azure login
8994 uses : azure/login@v2.2.0
Original file line number Diff line number Diff line change 7070 subscription-id : ${{ secrets.AZURE_SUBSCRIPTION_ID }}
7171 auth-type : ${{ env.AUTH_TYPE }}
7272
73+ # Logs into ACR
74+ - name : Log into ACR
75+ run : |
76+ az acr login -n ${{ env.AZURE_CONTAINER_REGISTRY }}
77+
7378 # Builds and pushes an image up to your Azure Container Registry
7479 - name : Build and push image to ACR
7580 run : |
You can’t perform that action at this time.
0 commit comments