From da66e30d31cac40b1818c2a598847a6788ebb1f2 Mon Sep 17 00:00:00 2001 From: Dar Malovani Date: Sun, 11 Aug 2024 11:19:57 +0300 Subject: [PATCH] deploy step --- .github/workflows/deploy.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..96cd9cf --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,27 @@ +name: Deploy to Azure +on: + push: + branches: + - 'main' + +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=${REPO_NAME,,}" >>${GITHUB_ENV} + env: + REPO_NAME: '${{ github.event.repository.name }}' + + - 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 .