one-api/web/build.sh
JustSong 83f95935de
Some checks failed
Publish Docker image (amd64, English) / Push Docker image to multiple registries (push) Has been cancelled
Publish Docker image (amd64) / Push Docker image to multiple registries (push) Has been cancelled
ci: fix Dockerfile & ci
2024-01-01 19:23:46 +08:00

14 lines
244 B
Bash

#!/bin/sh
version=$(cat VERSION)
themes=$(cat THEMES)
IFS=$'\n'
for theme in $themes; do
echo "Building theme: $theme"
cd $theme
npm install
DISABLE_ESLINT_PLUGIN='true' REACT_APP_VERSION=$version npm run build
cd ..
done