Revert back to non AzCli mechanism

This commit is contained in:
Gustavo Hidalgo 2024-04-01 19:08:16 -04:00
Родитель 53da91cdfe
Коммит f0ba6b748a
1 изменённых файлов: 2 добавлений и 8 удалений

10
.github/workflows/cicd.yml поставляемый
Просмотреть файл

@ -19,13 +19,10 @@ jobs:
creds: '${{ secrets.AZURE_CREDENTIALS }}'
- name: Authenticate
uses: azure/cli@v2
env:
CLIENT_ID: ${{ fromJSON(secrets.AZURE_CREDENTIALS).clientId }}
CLIENT_SECRET: ${{ fromJSON(secrets.AZURE_CREDENTIALS).clientSecret }}
with:
inlineScript: |
./scripts/ciauthenticate
run: ./scripts/ciauthenticate
- name: Run cibuild
run: ./scripts/cibuild
@ -43,10 +40,7 @@ jobs:
esac
- name: Publish images
uses: azure/cli@v2
with:
inlineScript: |
./scripts/cipublish --acr pcccr --tag ${{steps.get_image_tag.outputs.tag}}
run: ./scripts/cipublish --acr pcccr --tag ${{steps.get_image_tag.outputs.tag}}
outputs:
image_tag: ${{ steps.get_image_tag.outputs.tag }}