Compare commits

..

No commits in common. "v1.0.2" and "v1.0.1" have entirely different histories.

6 changed files with 9 additions and 22 deletions

View file

@ -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

View file

@ -1,10 +1,3 @@
## [1.0.2](https://src.mfgames.com/fedran-sources/difficulties-of-traditions/compare/v1.0.1...v1.0.2) (2022-10-17)
### Bug Fixes
* updating build ([d82c5ac](https://src.mfgames.com/fedran-sources/difficulties-of-traditions/commit/d82c5ac1215a57a22bf0ae4779380c83348cf859))
## [1.0.1](https://src.mfgames.com/fedran-sources/difficulties-of-traditions/compare/v1.0.0...v1.0.1) (2022-10-13) ## [1.0.1](https://src.mfgames.com/fedran-sources/difficulties-of-traditions/compare/v1.0.0...v1.0.1) (2022-10-13)

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "difficulties-of-traditions", "name": "difficulties-of-traditions",
"version": "1.0.2", "version": "1.0.1",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "difficulties-of-traditions", "name": "difficulties-of-traditions",
"version": "1.0.2", "version": "1.0.1",
"license": "CC-BY-NC-SA-4.0", "license": "CC-BY-NC-SA-4.0",
"dependencies": { "dependencies": {
"@fedran/writing-hyphen": "^1.0.0", "@fedran/writing-hyphen": "^1.0.0",

View file

@ -1,6 +1,6 @@
{ {
"name": "difficulties-of-traditions", "name": "difficulties-of-traditions",
"version": "1.0.2", "version": "1.0.1",
"private": true, "private": true,
"description": "\"Difficulties of Traditions\" is a story by D. Moonfire.", "description": "\"Difficulties of Traditions\" is a story by D. Moonfire.",
"author": { "author": {

View file

@ -1,11 +1,11 @@
{ {
"metadata": { "metadata": {
"title": "Difficulties of Traditions", "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": [
{ {

View file

@ -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