Pet Store Assistant CI/CD to Azure App Service #151
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pet Store Assistant CI/CD to Azure App Service | |
env: | |
AZURE_CONTAINER_REGISTRY: azurepetstoremecr.azurecr.io | |
AZURE_CONTAINER_REGISTRY_USERNAME: azurepetstoremecr | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- petstore/petstoreassistant/** | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Update the application.properties hack because the app config injection isnt working for some reason | |
run: echo -n -e "MicrosoftAppId=${{ secrets.ASSISTANTAPPID }}\nMicrosoftAppPassword=${{ secrets.ASSISTANTAPPPASSWORD }}\nserver.port=3978\napim.key=${{ secrets.ASSISTANT_APIM_KEY }}\naoai.key=${{ secrets.ASSISTANT_AOAI_KEY }}\naoai.url=https://azurepetstoremeapim.azure-api.net\ncognitive.search.key=${{ secrets.ASSISTANT_CS_KEY }}\ncognitive.search.url=https://azurepetstoreaisearch.search.windows.net/indexes/petproducts/docs/search?api-version=2023-11-01\ncosmos.key=${{ secrets.ASSISTANT_COSMOS_KEY }}" > petstore/petstoreassistant/src/main/resources/application.properties | |
- run: cat petstore/petstoreassistant/src/main/resources/application.properties | |
- uses: azure/docker-login@v1 | |
name: Build Docker image | |
with: | |
login-server: ${{ env.AZURE_CONTAINER_REGISTRY }} | |
username: ${{ env.AZURE_CONTAINER_REGISTRY_USERNAME }} | |
password: ${{ secrets.PETSTORECRSECRET }} | |
- name: Push Docker image to Azure Container Registry | |
run: | | |
docker build petstore/petstoreassistant -t ${{env.AZURE_CONTAINER_REGISTRY}}/petstoreassistant:latest -t ${{ env.AZURE_CONTAINER_REGISTRY }}/petstoreassistant:${{ github.sha }} | |
docker push ${{ env.AZURE_CONTAINER_REGISTRY }}/petstoreassistant:${{ github.sha }} | |
docker push ${{ env.AZURE_CONTAINER_REGISTRY }}/petstoreassistant:latest | |