AzuraCast/.github/actions/generate-locales/entrypoint.sh

17 lines
278 B
Bash

#!/usr/bin/env sh
# Install Composer dependencies
composer install --no-interaction --ignore-platform-reqs
# Import locales on backend
bin/console locale:generate
# Install NPM dependencies
cd frontend
npm ci
# Import locales on frontend
npm run generate-locales
eval "$@"