Skip to content

Commit

Permalink
deploy2
Browse files Browse the repository at this point in the history
  • Loading branch information
darmalovan committed Aug 8, 2024
1 parent fe18af5 commit 08ff411
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Deploy to Azure
on:
push:
branches:
- '**'

jobs:

deploy:
name: Deployment
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Log in to Azure CLI
uses: azure/login@v1
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}

- name: Deploy to Azure
run: |
az containerapp up -n node-calculator --ingress external --source .

0 comments on commit 08ff411

Please sign in to comment.