Compare commits
10 Commits
ee6003c405
...
13854915ba
| Author | SHA1 | Date | |
|---|---|---|---|
| 13854915ba | |||
| 4ad3c7c853 | |||
| f936f3a248 | |||
| ed4bef403a | |||
| 19882be253 | |||
| 6166bc14f9 | |||
| 44792f32d7 | |||
| 7e86e2bf69 | |||
| 3429f4678b | |||
| 7e60046195 |
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/neviim.post-self.ink:/opt/hugo/neviim.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://neviim.post-self.ink --destination /opt/hugo/neviim.post-self.ink
|
||||
|
||||
- name: Set permissions
|
||||
run: chown -R www-data:www-data /opt/hugo/neviim.post-self.ink
|
||||
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,2 +1,4 @@
|
||||
.hugo_build.lock
|
||||
content/perfect-edition
|
||||
public
|
||||
resources/_gen
|
||||
|
||||
@ -13,7 +13,7 @@ disablePathToLower = true
|
||||
home = 'https://makyo.ink'
|
||||
copyright = 2022
|
||||
customCSS = ['/css/neviim.css']
|
||||
subtitle = 'Post-Self book III'
|
||||
subtitle = 'Post-Self Cycle book III'
|
||||
subtitleLink = 'https://post-self.ink'
|
||||
|
||||
[markup.goldmark.renderer]
|
||||
|
||||
@ -41,7 +41,7 @@ Growth is colliding with memory, and the cracks are showing.
|
||||
|
||||
### 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.
|
||||
|
||||
|
||||
@ -34,7 +34,7 @@ Ey laughed and bumped eir shoulder against its own. "Of course."
|
||||
|
||||
Sarah raised her glass. "To the proper amount of excitement."
|
||||
|
||||
Dear hoisted its own glass as thought it was an ale-filled tankard. *"Precisely, my dear!"*
|
||||
Dear hoisted its own glass as though it was an ale-filled tankard. *"Precisely, my dear!"*
|
||||
|
||||
Codrin smiled, sipping eir wine as ey watched. *Proper amount of excitement, indeed.*
|
||||
|
||||
|
||||
@ -61,7 +61,7 @@ Eir frown deepened.
|
||||
|
||||
Ey looked down at the letter ey still held in eir hand. "Well--"
|
||||
|
||||
"No, disregard the letter, Ioan." She laughed and added, "Or at least disregard it for now. There is info in there, I am sure, but the message is in the dynamic. Dear is an asshole, but a clever one. It has ensured that it doesn't re-learn the Name and that you never learn it for yourself, all while making sure that it becomes an in-joke between our two clades. It has removed culpability from the Bălan clade and given both itself and me an out, should someone like True Name come asking. She can come hounding you for information like she did after that first letter and all she would find is a clever little way for lovers to poke fun at each other. Let me guess, Codrin said something about how it feels like this is something a Bălan could hold over an Odist."
|
||||
"No, disregard the letter, Ioan." She laughed and added, "Or at least disregard it for now. There is info in there, I am sure, but the message is in the dynamic. Dear is an asshole, but a clever one. It has ensured that it does not re-learn the Name and that you never learn it for yourself, all while making sure that it becomes an in-joke between our two clades. It has removed culpability from the Bălan clade and given both itself and me an out, should someone like True Name come asking. She can come hounding you for information like she did after that first letter and all she would find is a clever little way for lovers to poke fun at each other. Let me guess, Codrin said something about how it feels like this is something a Bălan could hold over an Odist."
|
||||
|
||||
Ey blinked, lifted the letter, and read aloud, "I do worry that this is the type of thing a Bălan could hold over the head of an Odist, but--"
|
||||
|
||||
|
||||
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: 5b3ecf7935...b3a328e733
Reference in New Issue
Block a user