From 7cffddca97f6f45e11ac84d9213cf2424d278bec Mon Sep 17 00:00:00 2001 From: relrelb Date: Fri, 7 Jan 2022 16:47:12 +0200 Subject: [PATCH] extension: Fix typo We actually append the build number (the `BUILD_ID` environment variable, which originates from `github.run_number` in the CI), not the build date. --- web/packages/extension/webpack.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/packages/extension/webpack.config.js b/web/packages/extension/webpack.config.js index 24534c8d1..722d8c12b 100644 --- a/web/packages/extension/webpack.config.js +++ b/web/packages/extension/webpack.config.js @@ -14,7 +14,7 @@ function transformManifest(content, env) { const buildDate = new Date().toISOString().substring(0, 10); // The extension marketplaces require the version to monotonically increase, - // so append the build date onto the end of the manifest version. + // so append the build number onto the end of the manifest version. manifest.version = process.env.BUILD_ID ? `${packageVersion}.${process.env.BUILD_ID}` : packageVersion;