mirror of
https://github.com/coracle-social/flotilla.git
synced 2025-12-09 18:37:02 +00:00
19 lines
395 B
Bash
Executable File
19 lines
395 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
# Fetch tags and set to env vars
|
|
git fetch --prune --unshallow --tags || true
|
|
git describe --tags --abbrev=0 || true
|
|
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
|