Skip to content

Commit bd43e3b

Browse files
committed
Enable new pages workflow
1 parent 532e920 commit bd43e3b

File tree

5 files changed

+56
-16
lines changed

5 files changed

+56
-16
lines changed

.github/workflows/pages.yaml

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
name: Build and Deploy to Pages
2+
3+
on:
4+
# Runs on pushes targeting the default branch
5+
push:
6+
branches: ["main"]
7+
8+
# Allows you to run this workflow manually from the Actions tab
9+
workflow_dispatch:
10+
11+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
12+
permissions:
13+
contents: read
14+
pages: write
15+
id-token: write
16+
17+
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
18+
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
19+
concurrency:
20+
group: "pages"
21+
cancel-in-progress: false
22+
23+
jobs:
24+
# Single deploy job since we're just deploying
25+
deploy:
26+
environment:
27+
name: github-pages
28+
url: ${{ steps.deployment.outputs.page_url }}
29+
runs-on: ubuntu-latest
30+
steps:
31+
- name: Checkout
32+
uses: actions/checkout@v4
33+
- name: Configure Python
34+
uses: actions/setup-python@v5
35+
with:
36+
python-version-file: ".python-version"
37+
- name: Install Python Dependencies
38+
run: make env
39+
- name: Build Static Site
40+
run: make build
41+
- name: Setup Pages
42+
uses: actions/configure-pages@v5
43+
- name: Upload artifact
44+
uses: actions/upload-pages-artifact@v3
45+
with:
46+
path: "_output/"
47+
- name: Deploy to GitHub Pages
48+
id: deployment
49+
uses: actions/deploy-pages@v4

.python-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.12

Makefile

+1-12
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
GIT_VERSION := $(shell git describe --abbrev=4 --dirty --always --tags)
44

5-
export SITE_DOMAIN:=parente.dev
5+
export SITE_DOMAIN:=blog.parente.dev
66

77
help:
88
# http://marmelab.com/blog/2016/02/29/auto-documented-makefile.html
@@ -21,16 +21,5 @@ env: ## Make the current python environment install the generator prereqs
2121
build: ## Make a local copy of the blog
2222
python generate.py
2323

24-
release: build ## Make a manual deployment of the blog
25-
@cd _output && \
26-
git init && \
27-
git remote add upstream '[email protected]:parente/blog.git' && \
28-
git fetch --depth=1 upstream gh-pages && \
29-
git reset upstream/gh-pages && \
30-
echo "$(SITE_DOMAIN)" > CNAME && \
31-
git add -A . && \
32-
git commit -m "Release $(GIT_VERSION)" && \
33-
git push upstream HEAD:gh-pages
34-
3524
server: ## Make a local web server point to the latest local build
3625
@open http://localhost:8000/_output && python -m http.server

generate.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
SITE_AUTHOR = os.environ.get("SITE_AUTHOR", "Peter Parente")
1717
SITE_NAME = os.environ.get("SITE_NAME", "parente.dev")
1818
SITE_ROOT = os.environ.get("SITE_ROOT", "")
19-
SITE_DOMAIN = os.environ.get("SITE_DOMAIN", "parente.dev")
19+
SITE_DOMAIN = os.environ.get("SITE_DOMAIN", "blog.parente.dev")
2020

2121
# Constants
2222
STATIC_DIR = "static"

requirements.txt

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1-
mako
2-
markdown
3-
pyyaml
1+
Mako==1.3.5
2+
Markdown==3.6
3+
MarkupSafe==2.1.5
4+
PyYAML==6.0.1

0 commit comments

Comments
 (0)