Update baseURL for API calls from FE to BE, update workflow to only p… #30
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and deploy Python app to Azure Web App - TooMuchToDoBackend | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- 'backend/**' # Only trigger when changes are made in the backend folder | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python version | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: Create and start virtual environment in backend | |
run: | | |
cd backend | |
python -m venv venv | |
source venv/bin/activate | |
- name: Install dependencies in backend | |
run: | | |
cd backend | |
pip install -r requirements.txt | |
# Decode the base64 secret and write it to a JSON file | |
- name: Create Firebase Admin Credentials File from Base64 | |
run: | | |
echo "${{ secrets.FIREBASE_ADMIN_CREDENTIALS_BASE64 }}" | base64 --decode > backend/firebase_admin_credentials.json | |
# Debug step to print the formatted JSON | |
- name: Debug - Print Firebase Credentials | |
run: cat "backend/firebase_admin_credentials.json" | |
# Optional: Add step to run tests here (PyTest, Django test suites, etc.) | |
- name: Zip artifact for deployment | |
run: | | |
cd backend | |
zip -r ../release.zip ./* | |
- name: Upload artifact for deployment jobs | |
uses: actions/upload-artifact@v4 | |
with: | |
name: python-app | |
path: release.zip | |
deploy: | |
runs-on: ubuntu-latest | |
needs: build | |
environment: | |
name: 'Production' | |
url: ${{ steps.deploy-to-webapp.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_5D539624CECF4EFD96ECD3E2631C5906 }} | |
tenant-id: ${{ secrets.AZUREAPPSERVICE_TENANTID_E3CE7B5488DE4657A22AD4580526D618 }} | |
subscription-id: ${{ secrets.AZUREAPPSERVICE_SUBSCRIPTIONID_3EC8E0579058475A84E06B24ADB1FCF8 }} | |
- name: 'Deploy to Azure Web App' | |
uses: azure/webapps-deploy@v3 | |
id: deploy-to-webapp | |
with: | |
app-name: 'TooMuchToDoBackend' | |
slot-name: 'Production' |