This commit is contained in:
dongdigua 2022-12-10 14:05:00 +08:00
parent bce41945c6
commit 5a429c0acb
3 changed files with 73 additions and 5 deletions

62
.github/workflows/site.yml vendored Normal file
View File

@ -0,0 +1,62 @@
name: Deploy with Org and Jekyll
on:
push:
branches: ["main"]
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Emacs
uses: purcell/setup-emacs@master
with:
version: 28.1
- name: Build with Org
run: |
cd org
make clean
make
tree ../
- name: Setup Pages
uses: actions/configure-pages@v2
- name: Build with Jekyll
uses: actions/jekyll-build-pages@v1
with:
source: ./
destination: ./_site
- name: Patch HTML
run: |
tree _site
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1

View File

@ -12,5 +12,5 @@ html:
clean:
- rm ~/.org-timestamps/org-pages.cache
$(TARGET) | xargs -I {} rm {}
rm ../feed.xml*
- $(TARGET) | xargs -I {} rm {}
- rm ../feed.xml*

View File

@ -4,10 +4,16 @@
;; System Crafter's video: https://youtu.be/AfkrzFodoNw
(eval-when-compile
(require 'package)
(package-initialize)
;; https://liujiacai.net/blog/2021/05/05/emacs-package
(when (not package-archive-contents)
(package-refresh-contents))
(dolist (p '(webfeeder))
(when (not (package-installed-p p))
(package-install p)))
(eval-when-compile
(require 'org)
(require 'ox)
(require 'webfeeder))