From 97485add7ee741ff64f05af39db678cfe39e7f4d Mon Sep 17 00:00:00 2001 From: Lars Kiesow Date: Mon, 6 May 2024 21:17:27 +0200 Subject: [PATCH] Fail on warnings when building releases This patch removes the forced `CI=false` which means that the build process will fail on compiler warnings. --- .github/build-release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/build-release.sh b/.github/build-release.sh index d1ecd3c592..4e5afb45ec 100755 --- a/.github/build-release.sh +++ b/.github/build-release.sh @@ -4,7 +4,7 @@ cd ../app rm -rf build/ export PUBLIC_URL=/admin-ui -CI=false npm run build +npm run build FILENAME="oc-admin-ui-$(date -u +%F).tar.gz" cd build