From 5253b3a94d19a8c668742c476bcef1ac6ee5535f Mon Sep 17 00:00:00 2001 From: MtnBurrit0 <77340197+mimartin12@users.noreply.github.com> Date: Fri, 19 Sep 2025 10:05:06 -0600 Subject: [PATCH] Add selfhosted-DEV artifact with Git hash metadata (#16475) --- .github/workflows/build-web.yml | 4 ++++ apps/web/package.json | 1 + 2 files changed, 5 insertions(+) diff --git a/.github/workflows/build-web.yml b/.github/workflows/build-web.yml index f00ae07fba3..18887ce8fbc 100644 --- a/.github/workflows/build-web.yml +++ b/.github/workflows/build-web.yml @@ -106,6 +106,10 @@ jobs: - artifact_name: selfhosted-COMMERCIAL image_name: web npm_command: dist:bit:selfhost + - artifact_name: selfhosted-DEV + image_name: web + npm_command: build:bit:selfhost:dev + git_metadata: true - artifact_name: cloud-QA image_name: web-qa-cloud npm_command: build:bit:qa diff --git a/apps/web/package.json b/apps/web/package.json index 551eb1c5e86..d2011a3c73c 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -18,6 +18,7 @@ "build:bit:selfhost:watch": "cross-env ENV=selfhosted npm run build:bit:watch", "build:oss:selfhost:prod": "cross-env ENV=selfhosted NODE_ENV=production npm run build:oss", "build:bit:selfhost:prod": "cross-env ENV=selfhosted NODE_ENV=production npm run build:bit", + "build:bit:selfhost:dev": "cross-env ENV=selfhosted NODE_ENV=production npm run build:bit", "build:bit:ee": "cross-env NODE_ENV=production ENV=ee npm run build:bit", "clean:l10n": "git push origin --delete l10n_master", "dist:bit:cloud": "npm run build:bit:cloud",