Skip to content

Commit

Permalink
Create an auto-deploy file
Browse files Browse the repository at this point in the history
  • Loading branch information
pauld-msft committed Nov 14, 2023
1 parent 02133cf commit 4e3d1df
Showing 1 changed file with 45 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Trigger auto deployment for bugbash-capp-2

# When this action will be executed
on:
# Automatically trigger it when detected changes in repo
push:
branches:
[ bugbash ]
paths:
- '**'
- '.github/workflows/bugbash-capp-2-AutoDeployTrigger-aaaca7a0-a341-458a-97f0-8d2002ec4ae2.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

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

- name: Azure Login
uses: azure/login@v1
with:
client-id: ${{ secrets.BUGBASHCAPP2_AZURE_CLIENT_ID }}
tenant-id: ${{ secrets.BUGBASHCAPP2_AZURE_TENANT_ID }}
subscription-id: ${{ secrets.BUGBASHCAPP2_AZURE_SUBSCRIPTION_ID }}

- name: Build and push container image to registry
uses: azure/container-apps-deploy-action@v2
with:
appSourcePath: ${{ github.workspace }}
registryUrl:
registryUsername: ${{ secrets.BUGBASHCAPP2_REGISTRY_USERNAME }}
registryPassword: ${{ secrets.BUGBASHCAPP2_REGISTRY_PASSWORD }}
containerAppName: bugbash-capp-2
resourceGroup: bugbash
imageToBuild: default/[parameters('containerAppName')]:${{ github.sha }}



0 comments on commit 4e3d1df

Please sign in to comment.