From 162ad38a1052f7b43af331cada9cda5dddb297f6 Mon Sep 17 00:00:00 2001 From: michaelrambeau Date: Sat, 7 Oct 2023 20:24:17 +0900 Subject: [PATCH] Invalidate package download data when the app is re-built --- cli/tasks/build-webhook.task.js | 1 + 1 file changed, 1 insertion(+) diff --git a/cli/tasks/build-webhook.task.js b/cli/tasks/build-webhook.task.js index 97eb91c..e19f485 100644 --- a/cli/tasks/build-webhook.task.js +++ b/cli/tasks/build-webhook.task.js @@ -5,6 +5,7 @@ const { createTask } = require("../task-runner"); module.exports = createTask("daily-build-webhook", async context => { await invalidateWebAppCacheByTag(context, 'all-projects'); await invalidateWebAppCacheByTag(context, 'project-details'); + await invalidateWebAppCacheByTag(context, 'package-downloads'); await triggerWebAppBuild(context); });