Azure App Service shows successful GitHub Action deployment, but changes not reflected on live site
Hi, I'm deploying my frontend web app (Vite + React) to Azure App Service using GitHub Actions and azure/webapps-deploy@v3
. The deployment logs show success both in GitHub Actions and in the Azure Portal (under "Build Logs" and "App Logs"), but the changes I push to the main
branch aren't showing up on the live site (https://treetopmate.azurewebsites.net
).
Here's what I’ve tried:
Verified that npm run build
is running inside my GitHub Actions workflow
Confirmed that the output is being zipped and uploaded as an artifact
Checked the deployment logs on Azure — they show no errors
Manually tailed logs with az webapp log tail
— no crash or failure
Rebuilt and redeployed multiple times
GitHub Actions Workflow (YAML):
App Service Info:
App Name: TreeTopMate
Resource Group: treetopmate-resourcegroup
Runtime: Python backend + frontend build output (vite build
) in static/
Additional context:
- When I run the app locally, the changes are visibleTitle: Azure App Service shows successful GitHub Action deployment, but changes not reflected on live site Body: Hi, I'm deploying my frontend web app (Vite + React) to Azure App Service using GitHub Actions and
azure/webapps-deploy@v3
. The deployment logs show success both in GitHub Actions and in the Azure Portal (under "Build Logs" and "App Logs"), but the changes I push to themain
branch aren't showing up on the live site (https://treetopmate.azurewebsites.net
). Here's what I’ve tried:- Verified that
npm run build
is running inside my GitHub Actions workflow - Confirmed that the output is being zipped and uploaded as an artifact
- Checked the deployment logs on Azure — they show no errors
- Manually tailed logs with
az webapp log tail
— no crash or failure - Rebuilt and redeployed multiple times
- App Name:
TreeTopMate
- Resource Group:
treetopmate-resourcegroup
- Runtime: Python backend + frontend build output (
vite build
) instatic/
- When I run the app locally, the changes are visible
- Verified that
I appreciate any help, thank you :)