Skip to content

Commit

Permalink
Create an auto-deploy file
Browse files Browse the repository at this point in the history
  • Loading branch information
v-chenzha committed May 17, 2023
1 parent 88a601d commit b976771
Showing 1 changed file with 42 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Trigger auto deployment for cindy3

# When this action will be executed
on:
# Automatically trigger it when detected changes in repo
push:
branches:
[ master ]
paths:
- '**'
- '.github/workflows/cindy3-AutoDeployTrigger-20ed3b66-397d-4749-82c4-e72a0fa621fa.yml'

# Allow mannually trigger
workflow_dispatch:

jobs:
build-and-deploy:
runs-on: ubuntu-latest

steps:
- name: Checkout to the branch
uses: actions/checkout@v2

- name: Azure Login
uses: azure/login@v1
with:
creds: ${{ secrets.CINDY3_AZURE_CREDENTIALS }}

- name: Build and push container image to registry
uses: azure/container-apps-deploy-action@v1
with:
appSourcePath: ${{ github.workspace }}
registryUrl: cindy.azurecr.io
registryUsername: ${{ secrets.CINDY3_REGISTRY_USERNAME }}
registryPassword: ${{ secrets.CINDY3_REGISTRY_PASSWORD }}
containerAppName: cindy3
resourceGroup: cindy11
imageToBuild: cindy.azurecr.io/acr-build-helloworld-node-master:${{ github.sha }}
dockerfilePath: Dockerfile



0 comments on commit b976771

Please sign in to comment.