mirror of
https://gitlab.com/DevLifeFromModernWay/devlifefrommodernway.gitlab.io.git
synced 2025-06-20 18:35:36 +00:00
24 lines
543 B
YAML
24 lines
543 B
YAML
image: oven/bun
|
|
pages:
|
|
stage: deploy
|
|
cache:
|
|
key:
|
|
files:
|
|
- bun.lockb
|
|
prefix: bun
|
|
paths:
|
|
- node_modules/
|
|
script:
|
|
- apt-get update && apt-get install -y calibre --no-install-recommends
|
|
- apt-get update && apt-get install -y fontconfig unzip
|
|
- unzip "./fonts/*.zip" -d /usr/share/fonts/
|
|
&& fc-cache -fv
|
|
- bun install
|
|
- env LANG=ja_JP.UTF-8 bun run build
|
|
- cp -a _book/. public/
|
|
artifacts:
|
|
paths:
|
|
- public/
|
|
rules:
|
|
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|