- Removed WDS storybook from the client build.sh. - Added workflow to deploy Vercel previews for release and prod. - Added workflow to trigger event on commenting `/build-wds-preview` to a PR.
19 lines
486 B
Bash
Executable File
19 lines
486 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
GIT_SHA=$(eval git rev-parse HEAD)
|
|
echo $GIT_SHA
|
|
echo "Sentry Auth Token: $SENTRY_AUTH_TOKEN"
|
|
|
|
# build cra app
|
|
REACT_APP_SENTRY_RELEASE=$GIT_SHA REACT_APP_CLIENT_LOG_LEVEL=ERROR EXTEND_ESLINT=true craco --max-old-space-size=4096 build --config craco.build.config.js
|
|
|
|
if [ "$GITHUB_REPOSITORY" == "appsmithorg/appsmith-ee" ]; then
|
|
echo "Deleting sourcemaps for EE"
|
|
rm ./build/static/js/*.js.map
|
|
rm ./build/static/js/*.js.map.gz
|
|
fi
|
|
|
|
echo "build finished"
|