forked from Azure-Samples/acr-build-helloworld-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
42 additions
and
0 deletions.
There are no files selected for viewing
42 changes: 42 additions & 0 deletions
42
.github/workflows/cindy3-AutoDeployTrigger-20ed3b66-397d-4749-82c4-e72a0fa621fa.yml
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
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 | ||
|
||
|
||
|