From bd4bb621828fa66f819dc6b2447abf4176e22700 Mon Sep 17 00:00:00 2001 From: Alvis <37454764+avibn@users.noreply.github.com> Date: Wed, 27 Mar 2024 12:51:11 +0000 Subject: [PATCH] add function deploy workflow --- .github/workflows/azure-functions-deploy.yml | 69 ++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 .github/workflows/azure-functions-deploy.yml diff --git a/.github/workflows/azure-functions-deploy.yml b/.github/workflows/azure-functions-deploy.yml new file mode 100644 index 0000000..8323d77 --- /dev/null +++ b/.github/workflows/azure-functions-deploy.yml @@ -0,0 +1,69 @@ +name: Deploy Python app to Azure Functions + +on: + workflow_dispatch: + +env: + AZURE_FUNCTIONAPP_PACKAGE_PATH: "azure" # set this to the path to your web app project, defaults to the repository root + PYTHON_VERSION: "3.11" # 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@v1 + 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 + working-directory: ${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }} + + # Optional: Add step to run tests here + + - name: Zip artifact for deployment + run: zip -r release.zip azure + + - name: Upload artifact for deployment job + uses: actions/upload-artifact@v3 + 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 }} + + steps: + - name: Download artifact from build job + uses: actions/download-artifact@v3 + with: + name: python-app + + - name: Unzip artifact for deployment + run: unzip release.zip + + - name: "Deploy to Azure Functions" + uses: Azure/functions-action@v1 + id: deploy-to-function + with: + app-name: "avib-cloudgroupcw" + slot-name: "production" + package: ${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }} + scm-do-build-during-deployment: true + enable-oryx-build: true + publish-profile: ${{ secrets.AZUREAPPSERVICE_PUBLISHPROFILE_DEE9D2AB9E5048DC9C5348B7F38B97B3 }}