ci: fixing release pipeline

This commit is contained in:
Chubby Granny Chaser
2025-10-28 21:37:28 +00:00
parent fc6068d603
commit 6b96c99bb1
11 changed files with 80 additions and 5 deletions

View File

@@ -50,9 +50,14 @@ export const loadState = async () => {
DeckyPlugin.checkAndUpdateIfOutdated();
}
await HydraApi.setupApi().then(() => {
await HydraApi.setupApi().then(async () => {
uploadGamesBatch();
void migrateDownloadSources();
const { syncDownloadSourcesFromApi } = await import(
"./services/user"
);
void syncDownloadSourcesFromApi();
// WSClient.connect();
});