Compare commits
3 commits
Author | SHA1 | Date | |
---|---|---|---|
|
1aa522bbb2 | ||
c90f0f539a | |||
51dddcb2e1 |
6 changed files with 22 additions and 9 deletions
|
@ -3,6 +3,8 @@ clone:
|
||||||
image: woodpeckerci/plugin-git
|
image: woodpeckerci/plugin-git
|
||||||
settings:
|
settings:
|
||||||
tags: true
|
tags: true
|
||||||
|
when:
|
||||||
|
event: [push, pull_request]
|
||||||
|
|
||||||
pipeline:
|
pipeline:
|
||||||
build:
|
build:
|
||||||
|
@ -17,8 +19,7 @@ pipeline:
|
||||||
- s3_access_key_id
|
- s3_access_key_id
|
||||||
- s3_secret_access_key
|
- s3_secret_access_key
|
||||||
when:
|
when:
|
||||||
event: [push, pull_request, tag]
|
event: [push, pull_request]
|
||||||
tag: v*
|
|
||||||
|
|
||||||
release:
|
release:
|
||||||
image: registry.gitlab.com/dmoonfire/nix-flake-docker:latest
|
image: registry.gitlab.com/dmoonfire/nix-flake-docker:latest
|
||||||
|
|
|
@ -1,3 +1,10 @@
|
||||||
|
## [0.3.4](https://src.mfgames.com/fedran-sources/songbird-in-the-kitchen/compare/v0.3.3...v0.3.4) (2022-10-17)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* updating build ([51dddcb](https://src.mfgames.com/fedran-sources/songbird-in-the-kitchen/commit/51dddcb2e11fc23d09c516feb33ef559349d099a))
|
||||||
|
|
||||||
## [0.3.3](https://src.mfgames.com/fedran-sources/songbird-in-the-kitchen/compare/v0.3.2...v0.3.3) (2022-10-14)
|
## [0.3.3](https://src.mfgames.com/fedran-sources/songbird-in-the-kitchen/compare/v0.3.2...v0.3.3) (2022-10-14)
|
||||||
|
|
||||||
|
|
||||||
|
|
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "songbird-in-the-kitchen",
|
"name": "songbird-in-the-kitchen",
|
||||||
"version": "0.3.3",
|
"version": "0.3.4",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "songbird-in-the-kitchen",
|
"name": "songbird-in-the-kitchen",
|
||||||
"version": "0.3.3",
|
"version": "0.3.4",
|
||||||
"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",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "songbird-in-the-kitchen",
|
"name": "songbird-in-the-kitchen",
|
||||||
"version": "0.3.3",
|
"version": "0.3.4",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "\"Songbird in the Kitchen\" is a story by D. Moonfire.",
|
"description": "\"Songbird in the Kitchen\" is a story by D. Moonfire.",
|
||||||
"author": {
|
"author": {
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"title": "{{edition.fedran.source.title}}",
|
"title": "Songbird in the Kitchen",
|
||||||
"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.title_slug}}-{{edition.name}}-{{edition.version}}.{{edition.ext}}",
|
"outputFilename": "dmoonfire-{{edition.fedran.source.identifier_slug}}-{{edition.version}}.{{edition.ext}}",
|
||||||
"markdown": {
|
"markdown": {
|
||||||
"extensions": [
|
"extensions": [
|
||||||
{
|
{
|
||||||
|
|
|
@ -10,9 +10,14 @@ 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"
|
||||||
npm run build:pdf || exit 1
|
./node_modules/.bin/mfgames-writing-format build pdf || exit 1
|
||||||
|
|
||||||
log "building EPUB"
|
log "building EPUB"
|
||||||
npm run build:epub || exit 1
|
./node_modules/.bin/mfgames-writing-format build epub || exit 1
|
||||||
|
epubcheck dmoonfire*.epub || exit 1
|
||||||
|
|
Loading…
Reference in a new issue