71 lines
No EOL
1.8 KiB
YAML
71 lines
No EOL
1.8 KiB
YAML
name: Build and deploy Python app to Azure Web App - gateway-int
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- int
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Set up Python version
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.11'
|
|
|
|
- name: Create and start virtual environment
|
|
run: |
|
|
python -m venv venv
|
|
source venv/bin/activate
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install -r requirements.txt --no-cache-dir
|
|
|
|
- name: Zip artifact for deployment
|
|
run: zip release.zip ./* -r
|
|
|
|
- name: Upload artifact for deployment jobs
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: python-app
|
|
path: |
|
|
release.zip
|
|
!venv/
|
|
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
needs: build
|
|
environment:
|
|
name: 'Production' # Or change to 'Integration' if you prefer
|
|
url: ${{ steps.deploy-to-webapp.outputs.webapp-url }}
|
|
|
|
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: Set productive environment
|
|
run: cp env_int.env .env
|
|
|
|
# REMOVED: Azure login step - not needed with publish profile
|
|
|
|
- name: 'Deploy to Azure Web App'
|
|
uses: azure/webapps-deploy@v3 # Using v3 like the working one
|
|
id: deploy-to-webapp
|
|
with:
|
|
app-name: 'gateway-int'
|
|
slot-name: 'Production'
|
|
publish-profile: ${{ secrets.AZUREAPPSERVICE_PUBLISHPROFILE_GATEWAY_INT }} |