From e2adb02d3944b5f4c7d28988879112ba29d3de33 Mon Sep 17 00:00:00 2001 From: Gautam <167844844+gautamkhanapuri@users.noreply.github.com> Date: Sat, 13 Jul 2024 20:43:32 +0530 Subject: [PATCH] Add or update the Azure App Service build and deployment workflow config --- .github/workflows/main_gakfuncs.yml | 84 +++++++++++++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100644 .github/workflows/main_gakfuncs.yml diff --git a/.github/workflows/main_gakfuncs.yml b/.github/workflows/main_gakfuncs.yml new file mode 100644 index 0000000..55b3700 --- /dev/null +++ b/.github/workflows/main_gakfuncs.yml @@ -0,0 +1,84 @@ +# Docs for the Azure Web Apps Deploy action: https://github.com/azure/functions-action +# More GitHub Actions for Azure: https://github.com/Azure/actions +# More info on Python, GitHub Actions, and Azure Functions: https://aka.ms/python-webapps-actions + +name: Build and deploy Python project to Azure Function App - gakfuncs + +on: + push: + branches: + - main + workflow_dispatch: + +env: + AZURE_FUNCTIONAPP_PACKAGE_PATH: '.' # set this to the path to your web app project, defaults to the repository root + PYTHON_VERSION: '3.9' # set this to the python version to use (supports 3.6, 3.7, 3.8) + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Setup Python version + uses: actions/setup-python@v5 + with: + python-version: ${{ env.PYTHON_VERSION }} + + - name: Create and start virtual environment + run: | + python -m venv venv + source venv/bin/activate + + - name: Install dependencies + run: pip install -r requirements.txt + + # Optional: Add step to run tests here + + - name: Zip artifact for deployment + run: zip release.zip ./* -r + + - name: Upload artifact for deployment job + uses: actions/upload-artifact@v4 + with: + name: python-app + path: | + release.zip + !venv/ + + deploy: + runs-on: ubuntu-latest + needs: build + environment: + name: 'Production' + url: ${{ steps.deploy-to-function.outputs.webapp-url }} + permissions: + id-token: write #This is required for requesting the JWT + + steps: + - name: Download artifact from build job + uses: actions/download-artifact@v4 + with: + name: python-app + + - name: Unzip artifact for deployment + run: unzip release.zip + + - name: Login to Azure + uses: azure/login@v2 + with: + client-id: ${{ secrets.AZUREAPPSERVICE_CLIENTID_F8B037328F0D4965B2EB0444E8C25659 }} + tenant-id: ${{ secrets.AZUREAPPSERVICE_TENANTID_E940DE98E2714699B75B5321D181391F }} + subscription-id: ${{ secrets.AZUREAPPSERVICE_SUBSCRIPTIONID_395BF2F0182044718865E339B9400689 }} + + - name: 'Deploy to Azure Functions' + uses: Azure/functions-action@v1 + id: deploy-to-function + with: + app-name: 'gakfuncs' + slot-name: 'Production' + package: ${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }} + scm-do-build-during-deployment: true + enable-oryx-build: true + \ No newline at end of file