Skip to content

Commit

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

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

- name: Set the app name
run: echo "AZURE_APP_NAME=${GITHUB_REPOSITORY,,}" >>${GITHUB_ENV}

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

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

0 comments on commit 76cd1a9

Please sign in to comment.