From 0b388ce82ba79c7b5a7242781283550cfc1a2834 Mon Sep 17 00:00:00 2001 From: xiaohei Date: Mon, 29 Dec 2025 09:23:53 +0000 Subject: [PATCH] fix(azure): add skip_deploy_on_missing_secrets for token handling Azure SWA recommends this parameter to gracefully handle missing deployment tokens. When secrets are not configured, the workflow will continue without deployment. --- .github/workflows/azure-static-web-apps.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/azure-static-web-apps.yml b/.github/workflows/azure-static-web-apps.yml index b753373..a4e40d0 100644 --- a/.github/workflows/azure-static-web-apps.yml +++ b/.github/workflows/azure-static-web-apps.yml @@ -40,3 +40,4 @@ jobs: output_location: '' skip_app_build: true is_static_export: true + skip_deploy_on_missing_secrets: true