File tree 5 files changed +56
-16
lines changed
5 files changed +56
-16
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
1
+ 3.12
Original file line number Diff line number Diff line change 2
2
3
3
GIT_VERSION := $(shell git describe --abbrev=4 --dirty --always --tags)
4
4
5
- export SITE_DOMAIN: =parente.dev
5
+ export SITE_DOMAIN: =blog. parente.dev
6
6
7
7
help :
8
8
# 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
21
21
build : # # Make a local copy of the blog
22
22
python generate.py
23
23
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
-
35
24
server : # # Make a local web server point to the latest local build
36
25
@open http://localhost:8000/_output && python -m http.server
Original file line number Diff line number Diff line change 16
16
SITE_AUTHOR = os .environ .get ("SITE_AUTHOR" , "Peter Parente" )
17
17
SITE_NAME = os .environ .get ("SITE_NAME" , "parente.dev" )
18
18
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" )
20
20
21
21
# Constants
22
22
STATIC_DIR = "static"
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments