Skip to content

Commit

Permalink
Deploying container app
Browse files Browse the repository at this point in the history
  • Loading branch information
dooman87 committed Mar 27, 2024
1 parent f4ca63b commit c9d9128
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/container-app.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Container App Deployment

on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened, closed]

jobs:
build_and_deploy_job:
runs-on: ubuntu-latest
steps:
- name: Log in to Azure
uses: azure/login@v1
with:
client-id: ${{ secrets.AZURE_CLIENT_ID }}
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
- name: Build and deploy Container App
uses: azure/container-apps-deploy-action@v1
with:
appSourcePath: ${{ github.workspace }}
acrName: dddmelbourne
containerAppName: website

0 comments on commit c9d9128

Please sign in to comment.