mirror of
https://github.com/coracle-social/flotilla.git
synced 2025-12-10 02:47:06 +00:00
17 lines
371 B
Bash
Executable File
17 lines
371 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Fetch tags and set to env vars
|
|
git fetch --prune --unshallow --tags
|
|
git describe --tags --abbrev=0
|
|
export VITE_BUILD_VERSION=$RENDER_GIT_COMMIT
|
|
export VITE_BUILD_HASH=$RENDER_GIT_COMMIT
|
|
|
|
# Install dependencies
|
|
CI=0 pnpm i
|
|
|
|
# Rebuild sharp
|
|
pnpm rebuild
|
|
|
|
# The build runs out of memory at times
|
|
NODE_OPTIONS=--max_old_space_size=16384 pnpm run build
|