8 Commits

Author SHA1 Message Date
d59033d4f6 more nonsene
All checks were successful
GitHub Pages / deploy (push) Successful in 11s
2026-02-24 22:02:45 -06:00
a3333adcb0 reference a tag
Some checks failed
GitHub Pages / deploy (push) Failing after 9s
2026-02-24 22:00:39 -06:00
4801fe754e something
All checks were successful
GitHub Pages / deploy (push) Successful in 18s
2026-02-24 21:54:52 -06:00
1b151fd27f lets try this
Some checks failed
GitHub Pages / deploy (push) Failing after 10s
2026-02-24 21:50:47 -06:00
e33face849 current directory
Some checks failed
GitHub Pages / deploy (push) Failing after 10s
2026-02-24 21:46:50 -06:00
e4818e76e6 something
Some checks failed
GitHub Pages / deploy (push) Failing after 1m17s
2026-02-24 21:40:00 -06:00
bfe0f324fc do the thing
All checks were successful
GitHub Pages / deploy (push) Successful in 7s
2026-02-24 21:34:32 -06:00
4ab2c05be5 build thing
Some checks failed
GitHub Pages / deploy (push) Failing after 27s
2026-02-24 21:32:24 -06:00
2 changed files with 36 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
name: GitHub Pages
on:
push:
tags:
- '*'
jobs:
deploy:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
submodules: true # Fetch Hugo themes (true OR recursive)
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
- name: Setup Hugo
uses: peaceiris/actions-hugo@v3
with:
hugo-version: '0.156.0'
# extended: true
- name: Build
run: hugo --minify --destination ./public
- name: Build and push
uses: docker/build-push-action@v6
with:
context: .
file: Dockerfile
push: true
tags: "docker.paulmontag.info/blog:${{ github.ref_name }}"

3
Dockerfile Normal file
View File

@@ -0,0 +1,3 @@
FROM nginx
COPY ./public /usr/share/nginx/html