Skip to content
name: Trigger auto deployment for services-provider-app-container
# When this action will be executed
on:
# Automatically trigger it when detected changes in repo
push:
branches:
[ master ]
paths:
- '**'
- '.github/workflows/services-provider-app-container-AutoDeployTrigger-f152d153-13ee-44ee-9c0b-89df8b774743.yml'
# Allow manual trigger
workflow_dispatch:
jobs:
build-and-deploy:
runs-on: ubuntu-latest
permissions:
id-token: write #This is required for requesting the OIDC JWT Token
contents: read #Required when GH token is used to authenticate with private repo
steps:
- name: Checkout to the branch
uses: actions/checkout@v2
- name: Azure Login
uses: azure/login@v1
with:
client-id: ${{ secrets.SERVICESPROVIDERAPPCONTAINER_AZURE_CLIENT_ID }}
tenant-id: ${{ secrets.SERVICESPROVIDERAPPCONTAINER_AZURE_TENANT_ID }}
subscription-id: ${{ secrets.SERVICESPROVIDERAPPCONTAINER_AZURE_SUBSCRIPTION_ID }}
- name: Build and push container image to registry
uses: azure/container-apps-deploy-action@v2
with:
appSourcePath: ${{ github.workspace }}
registryUrl: acr108.azurecr.io
registryUsername: ${{ secrets.SERVICESPROVIDERAPPCONTAINER_REGISTRY_USERNAME }}
registryPassword: ${{ secrets.SERVICESPROVIDERAPPCONTAINER_REGISTRY_PASSWORD }}
containerAppName: services-provider-app-container
resourceGroup: new-ubaid-resource-group
imageToBuild: acr108.azurecr.io/services-provider-app-container:${{ github.sha }}
_buildArgumentsKey_: |
_buildArgumentsValues_