File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Trigger auto deployment for ca-williamhe-app
2+
3+ # When this action will be executed
4+ on :
5+ # Automatically trigger it when detected changes in repo
6+ push :
7+ branches :
8+ [ main ]
9+ paths :
10+ - ' **'
11+ - ' .github/workflows/ca-williamhe-app-AutoDeployTrigger-bf5cb96a-7a30-43dd-8f9a-43ba199dfb38.yml'
12+
13+ # Allow manual trigger
14+ workflow_dispatch :
15+
16+ jobs :
17+ build-and-deploy :
18+ runs-on : ubuntu-latest
19+ permissions :
20+ id-token : write # This is required for requesting the OIDC JWT Token
21+ contents : read # Required when GH token is used to authenticate with private repo
22+
23+ steps :
24+ - name : Checkout to the branch
25+ uses : actions/checkout@v2
26+
27+ - name : Azure Login
28+ uses : azure/login@v2
29+ with :
30+ client-id : ${{ secrets.CAWILLIAMHEAPP_AZURE_CLIENT_ID }}
31+ tenant-id : ${{ secrets.CAWILLIAMHEAPP_AZURE_TENANT_ID }}
32+ subscription-id : ${{ secrets.CAWILLIAMHEAPP_AZURE_SUBSCRIPTION_ID }}
33+
34+ - name : Build and push container image to registry
35+ uses : azure/container-apps-deploy-action@v2
36+ with :
37+ appSourcePath : ${{ github.workspace }}
38+ _dockerfilePathKey_ : _dockerfilePath_
39+ targetLabel : mylabel
40+ registryUrl : acatestregistry.azurecr.io
41+ registryUsername : ${{ secrets.CAWILLIAMHEAPP_REGISTRY_USERNAME }}
42+ registryPassword : ${{ secrets.CAWILLIAMHEAPP_REGISTRY_PASSWORD }}
43+ containerAppName : ca-williamhe-app
44+ resourceGroup : capps-williamhe3-rg
45+ imageToBuild : acatestregistry.azurecr.io/mcr.microsoft.com/k8se/quickstart:${{ github.sha }}
46+ _buildArgumentsKey_ : |
47+ _buildArgumentsValues_
48+
49+
You can’t perform that action at this time.
0 commit comments