Compare commits
No commits in common. "main" and "v1.0.0" have entirely different histories.
6 changed files with 9 additions and 2612 deletions
|
@ -3,8 +3,6 @@ clone:
|
||||||
image: woodpeckerci/plugin-git
|
image: woodpeckerci/plugin-git
|
||||||
settings:
|
settings:
|
||||||
tags: true
|
tags: true
|
||||||
when:
|
|
||||||
event: [push, pull_request]
|
|
||||||
|
|
||||||
pipeline:
|
pipeline:
|
||||||
build:
|
build:
|
||||||
|
@ -19,7 +17,8 @@ pipeline:
|
||||||
- s3_access_key_id
|
- s3_access_key_id
|
||||||
- s3_secret_access_key
|
- s3_secret_access_key
|
||||||
when:
|
when:
|
||||||
event: [push, pull_request]
|
event: [push, pull_request, tag]
|
||||||
|
tag: v*
|
||||||
|
|
||||||
release:
|
release:
|
||||||
image: registry.gitlab.com/dmoonfire/nix-flake-docker:latest
|
image: registry.gitlab.com/dmoonfire/nix-flake-docker:latest
|
||||||
|
|
|
@ -1,10 +1,3 @@
|
||||||
## [1.0.1](https://src.mfgames.com/fedran-sources/hopelessly-stuck-in-a-rainy-field/compare/v1.0.0...v1.0.1) (2022-10-17)
|
|
||||||
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
* updating build ([3f94b9f](https://src.mfgames.com/fedran-sources/hopelessly-stuck-in-a-rainy-field/commit/3f94b9fd8b9e282b5b644d777b90d9bc97637f06))
|
|
||||||
|
|
||||||
# 1.0.0 (2022-10-13)
|
# 1.0.0 (2022-10-13)
|
||||||
|
|
||||||
|
|
||||||
|
|
2594
package-lock.json
generated
2594
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "hopelessly-stuck-in-a-rainy-field",
|
"name": "hopelessly-stuck-in-a-rainy-field",
|
||||||
"version": "1.0.1",
|
"version": "1.0.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "\"Hopelessly Stuck in a Rainy Field\" is a story by D. Moonfire.",
|
"description": "\"Hopelessly Stuck in a Rainy Field\" is a story by D. Moonfire.",
|
||||||
"author": {
|
"author": {
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"title": "Hopelessly Stuck in a Rainy Field",
|
"title": "{{edition.fedran.source.title}}",
|
||||||
"author": "D. Moonfire",
|
"author": "D. Moonfire",
|
||||||
"language": "en",
|
"language": "en",
|
||||||
"theme": "@fedran/writing-theme",
|
"theme": "@fedran/writing-theme",
|
||||||
"outputDirectory": ".",
|
"outputDirectory": ".",
|
||||||
"outputFilename": "dmoonfire-{{edition.fedran.source.identifier_slug}}-{{edition.version}}.{{edition.ext}}",
|
"outputFilename": "dmoonfire-{{edition.fedran.source.title_slug}}-{{edition.name}}-{{edition.version}}.{{edition.ext}}",
|
||||||
"markdown": {
|
"markdown": {
|
||||||
"extensions": [
|
"extensions": [
|
||||||
{
|
{
|
||||||
|
|
|
@ -10,14 +10,9 @@ cd $(dirname $(dirname $0))
|
||||||
log "setting up project"
|
log "setting up project"
|
||||||
./scripts/setup.sh || exit 1
|
./scripts/setup.sh || exit 1
|
||||||
|
|
||||||
# Clean up the old files.
|
|
||||||
log "cleaning old builds"
|
|
||||||
rm -f dmoonfire*
|
|
||||||
|
|
||||||
# Build the project outputs.
|
# Build the project outputs.
|
||||||
log "building PDF"
|
log "building PDF"
|
||||||
./node_modules/.bin/mfgames-writing-format build pdf || exit 1
|
npm run build:pdf || exit 1
|
||||||
|
|
||||||
log "building EPUB"
|
log "building EPUB"
|
||||||
./node_modules/.bin/mfgames-writing-format build epub || exit 1
|
npm run build:epub || exit 1
|
||||||
epubcheck dmoonfire*.epub || exit 1
|
|
||||||
|
|
Loading…
Reference in a new issue