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 7a656af
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 }} | tr '[:upper:]' '[:lower:]')" >> $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 ${{ github.repository }} --ingress external --source .

0 comments on commit 7a656af

Please sign in to comment.