From fb4d97ef7867ead32e16cd0fc657a6244a4b8cc8 Mon Sep 17 00:00:00 2001 From: Luc Leray Date: Mon, 18 Jan 2021 18:22:02 +0100 Subject: [PATCH] fix: Use `VERCEL_GIT_COMMIT_SHA` env variable (#2816) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index e7e2c900f..cd1404714 100644 --- a/package.json +++ b/package.json @@ -81,7 +81,7 @@ "scripts": { "build-node": "node ./scripts/build-node.js", "build:app:docker": "REACT_APP_DISABLE_SENTRY=true react-scripts build", - "build:app": "REACT_APP_GIT_SHA=$NOW_GITHUB_COMMIT_SHA react-scripts build", + "build:app": "REACT_APP_GIT_SHA=$VERCEL_GIT_COMMIT_SHA react-scripts build", "build:version": "node ./scripts/build-version.js", "build": "npm run build:app && npm run build:version", "eject": "react-scripts eject",