Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ab269f1

Browse files
committedJan 6, 2023
Changed blog over to Hugo from Jekyll
0 parents  commit ab269f1

File tree

158 files changed

+807
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

158 files changed

+807
-0
lines changed
 

‎.github/workflows/gh-pages.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# .github/workflows/gh-pages.yml
2+
3+
name: GitHub Pages
4+
5+
on:
6+
push:
7+
branches:
8+
- main
9+
10+
jobs:
11+
build-deploy:
12+
runs-on: ubuntu-latest
13+
concurrency:
14+
group: ${{ github.workflow }}-${{ github.ref }}
15+
steps:
16+
- name: Checkout
17+
uses: actions/checkout@v3
18+
with:
19+
submodules: true
20+
fetch-depth: 0
21+
22+
- name: Setup Hugo
23+
uses: peaceiris/actions-hugo@v2
24+
with:
25+
hugo-version: "latest"
26+
27+
- name: Build
28+
run: hugo --minify
29+
30+
- name: Deploy
31+
uses: peaceiris/actions-gh-pages@v3
32+
if: ${{ github.ref == 'refs/heads/main' }}
33+
with:
34+
github_token: ${{ secrets.GITHUB_TOKEN }}
35+
publish_branch: gh-pages
36+
publish_dir: ./public

‎.hugo_build.lock

Whitespace-only changes.

0 commit comments

Comments
 (0)
Please sign in to comment.