Compare commits
10 Commits
79b66277aa
...
9614287456
| Author | SHA1 | Date | |
|---|---|---|---|
| 9614287456 | |||
| e3e0b152f7 | |||
| 0cb3dc5832 | |||
| 6b29cad8b2 | |||
| 83adbdc7bd | |||
| 8257a9c47c | |||
| 55c7a1432c | |||
| 2927c53063 | |||
| b115f9d4a0 | |||
| a9d2102a3b |
42
.gitea/workflows/deploy.yaml
Normal file
42
.gitea/workflows/deploy.yaml
Normal file
@ -0,0 +1,42 @@
|
||||
name: Deploy
|
||||
run-name: ${{ gitea.actor }} is deploying ${{ gitea.repository }}
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: docker.gitea.com/runner-images:ubuntu-latest
|
||||
volumes:
|
||||
- /opt/hugo/qoheleth.post-self.ink:/opt/hugo/qoheleth.post-self.ink
|
||||
env:
|
||||
DART_SASS_VERSION: 1.98.0
|
||||
steps:
|
||||
- name: Check out repo
|
||||
uses: actions/checkout@v6
|
||||
with:
|
||||
submodules: 'true'
|
||||
|
||||
- name: Install Hugo
|
||||
uses: peaceiris/actions-hugo@v3
|
||||
with:
|
||||
hugo-version: '0.157.0'
|
||||
extended: true
|
||||
|
||||
- name: Install Dart Sass
|
||||
run: |
|
||||
curl -LJO https://github.com/sass/dart-sass/releases/download/${DART_SASS_VERSION}/dart-sass-${DART_SASS_VERSION}-linux-x64.tar.gz \
|
||||
&& tar -xf dart-sass-${DART_SASS_VERSION}-linux-x64.tar.gz \
|
||||
&& cp -r dart-sass/* /usr/local/bin \
|
||||
&& rm -rf dart-sass* \
|
||||
&& sass --embedded --version
|
||||
|
||||
- name: Build site
|
||||
run: |
|
||||
hugo build --gc --minify --baseURL https://qoheleth.post-self.ink --destination /opt/hugo/qoheleth.post-self.ink
|
||||
|
||||
- name: Set permissions
|
||||
run: chown -R www-data:www-data /opt/hugo/qoheleth.post-self.ink
|
||||
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,3 +1,4 @@
|
||||
.hugo_build.lock
|
||||
content/perfect-edition
|
||||
public
|
||||
resources/_gen
|
||||
|
||||
@ -13,7 +13,7 @@ disablePathToLower = true
|
||||
home = 'https://makyo.ink'
|
||||
copyright = 2020
|
||||
customCSS = ['/css/qoheleth.css']
|
||||
subtitle = 'Post-Self book I'
|
||||
subtitle = 'Post-Self Cycle book I'
|
||||
subtitleLink = 'https://post-self.ink'
|
||||
|
||||
[markup.goldmark.renderer]
|
||||
|
||||
@ -4,7 +4,6 @@
|
||||
<a href="https://makyo.itch.io/qoheleth" target="_blank">Order ebook</a>
|
||||
<a href="https://makyo-ink.square.site/product/qoheleth/7" target="_blank">Order paperback</a>
|
||||
<a href="https://anchor.fm/post-self" target="_blank">Listen to the podcast</a>
|
||||
<a href="https://makyo.substack.com/s/post-self">Read it serialized on Substack</a>
|
||||
</p>
|
||||
|
||||
> "All artists search. I search for stories, in this post-self age. What happens when you can no longer call yourself an individual, when you have split your sense of self among several instances? How do you react? Do you withdraw into yourself, become a hermit? Do you expand until you lose all sense of identity? Do you fragment? Do you go about it deliberately, or do you let nature and chance take their course?"
|
||||
@ -44,7 +43,7 @@ And, nearly a century on, society still struggles with the ramifications of thos
|
||||
|
||||
### About the author
|
||||
|
||||

|
||||
<img alt="Print by Forrest Gerke" src="https://makyo.ink/assets/img/headshot.png" class="invertable" />
|
||||
|
||||
Madison Scott-Clary is a transgender writer, editor, and software engineer. She focuses on furry fiction and non-fiction, using that as a framework for interrogating the concept of self and exploring across genres. A graduate of the Regional Anthropomorphic Writers Workshop in 2021, hosted by Kyell Gold and Dayna Smith, she holds an MFA in creative writing and education from Cornell College in Mount Vernon, IA. She lives in the Pacific Northwest with her dog, as well as her partner, who is sometimes a dog.
|
||||
|
||||
|
||||
@ -44,7 +44,7 @@ Ross jumped, then looked embarrassed as he tugged the headset off his head. "Sor
|
||||
|
||||
It only took a few minutes for RJ and Ross to get the last of the sound gear settled. Headsets from all of the hands socketed into numbered chargers on the wall. Everything would sleep tight until the next night on sound's end.
|
||||
|
||||
Caitlin and Sarai, the stage manager, joined them with the rest of the crew. They sat on the edge of the pit cover, unwinding from the tenseness of rehearsal. The actors were slow got out of their half-costume and clump together on the stage.
|
||||
Caitlin and Sarai, the stage manager, joined them with the rest of the crew. They sat on the edge of the pit cover, unwinding from the tenseness of rehearsal. The actors were slow to get out of their half-costume and clump together on the stage.
|
||||
|
||||
"Gather 'round, children", a voice boomed from out in the darkened audience.
|
||||
|
||||
|
||||
6
netlify.toml
Normal file
6
netlify.toml
Normal file
@ -0,0 +1,6 @@
|
||||
[build]
|
||||
command = "hugo"
|
||||
publish = "public"
|
||||
|
||||
[build.environment]
|
||||
HUGO_VERSION = "0.127.0"
|
||||
Submodule themes/maddybook updated: 0723c51d97...b3a328e733
Reference in New Issue
Block a user