From 1e6e99aefa305c95cdda570722e56ea7a6753ada Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krist=C3=B3f=20Kerti?= <47832952+kkerti@users.noreply.github.com> Date: Thu, 3 Aug 2023 14:32:13 +0200 Subject: [PATCH] KKERTI update --- .github/workflows/alpha-matrix.yml | 2 +- build-scripts/alpha-packageModifier.js | 1 - build-scripts/local-buildVars.js | 1 - build-scripts/nightly-buildVars.js | 2 +- 4 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/alpha-matrix.yml b/.github/workflows/alpha-matrix.yml index e8eadd1dc..5c6b805c8 100644 --- a/.github/workflows/alpha-matrix.yml +++ b/.github/workflows/alpha-matrix.yml @@ -59,7 +59,7 @@ jobs: - name: Upload artifacts uses: actions/upload-artifact@v3 with: - name: ${{ matrix.os }}-nightly + name: ${{ matrix.os }}-alpha path: build/*.* - name: Release diff --git a/build-scripts/alpha-packageModifier.js b/build-scripts/alpha-packageModifier.js index d3bb6afb5..5fa4fa2db 100644 --- a/build-scripts/alpha-packageModifier.js +++ b/build-scripts/alpha-packageModifier.js @@ -6,7 +6,6 @@ const path = require("path"); let packageJsonPath = path.join(__dirname, "../package.json"); let packageJson = require(packageJsonPath); -let branchName = process.env.BRANCH_NAME; let releaseVersion = process.env.RELEASE_VERSION; packageJson.build.productName += ` (Alpha)`; diff --git a/build-scripts/local-buildVars.js b/build-scripts/local-buildVars.js index 324de8b6e..057a5babe 100644 --- a/build-scripts/local-buildVars.js +++ b/build-scripts/local-buildVars.js @@ -1,5 +1,4 @@ // This is for local packaged app testing. It will create a buildVariables.json file in the root folder. - const fs = require("fs"); const path = require("path"); diff --git a/build-scripts/nightly-buildVars.js b/build-scripts/nightly-buildVars.js index fb3fb034b..c76ab3677 100644 --- a/build-scripts/nightly-buildVars.js +++ b/build-scripts/nightly-buildVars.js @@ -3,7 +3,7 @@ const fs = require("fs"); const path = require("path"); let buildVariables = { - BUILD_END: "nightly", + BUILD_ENV: "nightly", PROFILE_CLOUD_URL: "https://profile-cloud-dev.web.app", };