fix windows deployment
Some checks failed
Build and Release FLUX (Multi-Platform) / build-android (push) Successful in 2m12s
Build and Release FLUX (Multi-Platform) / build-web (push) Successful in 1m3s
Build and Release FLUX (Multi-Platform) / build-windows (push) Failing after 3m52s

This commit is contained in:
2026-05-25 16:34:23 +02:00
parent b67354610d
commit 4101b736e6
2 changed files with 11 additions and 7 deletions

View File

@@ -34,13 +34,17 @@ jobs:
api_key: ${{ secrets.MYRELEASE_TOKEN }}
- name: Aggiorna App Config su Supabase
shell: bash # <--- IL TOCCO MAGICO
run: |
curl -X PATCH "***/rest/v1/app_config?id=eq.49f18b19-2129-46c0-b690-a97db725b5a8" \
-H "apikey: ***" \
-H "Authorization: Bearer ***" \
-H "Content-Type: application/json" \
-d '{"download_url": "https://gitea.catelli.it/brontomark/flux/releases/download/v1.0.15/FluxInstaller.exe"}'
$headers = @{
'apikey' = '${{ secrets.GITEA_SERVICE_KEY }}'
'Authorization' = 'Bearer ${{ secrets.GITEA_SERVICE_KEY }}'
}
$body = @{
download_url = 'https://gitea.catelli.it/brontomark/flux/releases/download/v1.0.15/FluxInstaller.exe'
} | ConvertTo-Json -Compress
Invoke-RestMethod -Uri 'pvqpjloswwvtfoxbkfbh/rest/v1/app_config?id=eq.49f18b19-2129-46c0-b690-a97db725b5a8' -Method PATCH -Headers $headers -ContentType 'application/json' -Body $body
- name: Pulisci Workspace Windows
if: always()