43 lines
1.4 KiB
YAML
43 lines
1.4 KiB
YAML
image: dmoonfire/mfgames-writing-js:1.1.1
|
|
|
|
stages:
|
|
- publish
|
|
|
|
publish:
|
|
stage: publish
|
|
tags:
|
|
- docker
|
|
script:
|
|
# Install the basic requirements including the free fonts.
|
|
- npm ci
|
|
|
|
# Verify that the commits are good.
|
|
- npx commitlint --from=master to=CI_BUILD_REF_NAME
|
|
|
|
# We need the covers and the previous version so we can generate the
|
|
# "previously" chapter.
|
|
- mkdir -p build/repos
|
|
- git clone https://oauth2:$fedranAccessKey@gitlab.com/fedran/fedran-covers.git build/repos/fedran-covers
|
|
- git clone https://oauth2:$fedranAccessKey@gitlab.com/fedran/sand-and-blood.git build/repos/sand-and-blood
|
|
- 'echo "---" > build/previously.markdown'
|
|
- 'echo "title: Previously" >> build/previously.markdown'
|
|
- 'echo "---" >> build/previously.markdown'
|
|
- 'cat build/repos/sand-and-blood/spoilers/plot.markdown >> build/previously.markdown'
|
|
|
|
# Trigger the release if needed.
|
|
- npx semantic-release
|
|
|
|
# Build the files.
|
|
- npm run build
|
|
|
|
# Trigger the Fedran website to rebuild.
|
|
- "curl -X POST -F token=$fedranAccessKey -F ref=master https://gitlab.com/api/v4/projects/4027285/trigger/pipeline"
|
|
|
|
artifacts:
|
|
expire_in: 1 week
|
|
paths:
|
|
- "*.pdf"
|
|
- "*.epub"
|
|
- "*.mobi"
|
|
- "*.docx"
|
|
- "*.html"
|