From f9d484c5e8cbd36db157721f271f58e9f1c0ed72 Mon Sep 17 00:00:00 2001 From: tschumpr Date: Wed, 27 Mar 2024 10:32:03 +0100 Subject: [PATCH] Add workflow to deploy to azure portal --- .github/workflows/pre-release.yml | 80 +++++++++++++++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 .github/workflows/pre-release.yml diff --git a/.github/workflows/pre-release.yml b/.github/workflows/pre-release.yml new file mode 100644 index 0000000..e41d03e --- /dev/null +++ b/.github/workflows/pre-release.yml @@ -0,0 +1,80 @@ +name: Pre-release + +on: + push: + branches: + - main + workflow_dispatch: + +env: + AZURE_FUNCTIONAPP_PACKAGE_PATH: "." + PYTHON_VERSION: "3.11" + +jobs: + build: + runs-on: ubuntu-latest + name: Code analysis and tests + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Set up Python + 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 + + - name: Zip artifact for deployment + run: zip release.zip ./* -r + + - 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 }} + permissions: + id-token: write + + 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: Login to Azure + uses: azure/login@v1 + with: + client-id: ${{ secrets.AZUREAPPSERVICE_CLIENTID_76209D9522134CCF8465C50AF621D6B9 }} + tenant-id: ${{ secrets.AZUREAPPSERVICE_TENANTID_F14DCB55488D41F2AD9A33FCC1A51DAD }} + subscription-id: ${{ secrets.AZUREAPPSERVICE_SUBSCRIPTIONID_0EC09A927C784E1FB77817FDBCE72DD1 }} + + - name: "Deploy to Azure Functions" + uses: Azure/functions-action@v1 + id: deploy-to-function + with: + app-name: "geodatenbezug" + slot-name: "production" + package: ${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }} + scm-do-build-during-deployment: true + enable-oryx-build: true