b39dcda4a1
deploy / deploy (push) Successful in 5s
Mirrors twosquirrelspress-site's submissions form and michaelferrara-site's gift/course-enroll pattern. Gift page content, cover art, and the download file are stubs until the real reader-magnet is ready. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
17 lines
368 B
YAML
17 lines
368 B
YAML
name: deploy
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: hugomods/hugo:exts
|
|
volumes:
|
|
- /var/www/thistleandmoth.org:/var/www/thistleandmoth.org
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
submodules: recursive
|
|
- run: hugo --minify -d /var/www/thistleandmoth.org
|