Compare commits

...

3 Commits

Author SHA1 Message Date
semantic-release-bot c5ca4af83a chore(release): v1.0.1 [skip ci]
## [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](3f94b9fd8b))
2022-10-17 01:59:35 +00:00
D. Moonfire 1f83f1aa21 chore: updating project setup 2022-10-15 13:52:15 -05:00
D. Moonfire 3f94b9fd8b fix: updating build 2022-10-15 07:32:40 -05:00
6 changed files with 22 additions and 9 deletions

View File

@ -3,6 +3,8 @@ clone:
image: woodpeckerci/plugin-git
settings:
tags: true
when:
event: [push, pull_request]
pipeline:
build:
@ -17,8 +19,7 @@ pipeline:
- s3_access_key_id
- s3_secret_access_key
when:
event: [push, pull_request, tag]
tag: v*
event: [push, pull_request]
release:
image: registry.gitlab.com/dmoonfire/nix-flake-docker:latest

View File

@ -1,3 +1,10 @@
## [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)

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "hopelessly-stuck-in-a-rainy-field",
"version": "1.0.0",
"version": "1.0.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "hopelessly-stuck-in-a-rainy-field",
"version": "1.0.0",
"version": "1.0.1",
"license": "CC-BY-NC-SA-4.0",
"dependencies": {
"@fedran/writing-hyphen": "^1.0.0",

View File

@ -1,6 +1,6 @@
{
"name": "hopelessly-stuck-in-a-rainy-field",
"version": "1.0.0",
"version": "1.0.1",
"private": true,
"description": "\"Hopelessly Stuck in a Rainy Field\" is a story by D. Moonfire.",
"author": {

View File

@ -1,11 +1,11 @@
{
"metadata": {
"title": "{{edition.fedran.source.title}}",
"title": "Hopelessly Stuck in a Rainy Field",
"author": "D. Moonfire",
"language": "en",
"theme": "@fedran/writing-theme",
"outputDirectory": ".",
"outputFilename": "dmoonfire-{{edition.fedran.source.title_slug}}-{{edition.name}}-{{edition.version}}.{{edition.ext}}",
"outputFilename": "dmoonfire-{{edition.fedran.source.identifier_slug}}-{{edition.version}}.{{edition.ext}}",
"markdown": {
"extensions": [
{

View File

@ -10,9 +10,14 @@ cd $(dirname $(dirname $0))
log "setting up project"
./scripts/setup.sh || exit 1
# Clean up the old files.
log "cleaning old builds"
rm -f dmoonfire*
# Build the project outputs.
log "building PDF"
npm run build:pdf || exit 1
./node_modules/.bin/mfgames-writing-format build pdf || exit 1
log "building EPUB"
npm run build:epub || exit 1
./node_modules/.bin/mfgames-writing-format build epub || exit 1
epubcheck dmoonfire*.epub || exit 1