2022-12-15 12:35:38 +08:00
|
|
|
name: Org and Jekyll
|
2022-12-10 14:05:00 +08:00
|
|
|
|
|
|
|
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
|
|
|
|
|
2022-12-20 10:03:59 +08:00
|
|
|
- name: Prepare
|
|
|
|
run: |
|
|
|
|
curl "https://raw.githubusercontent.com/dongdigua/configs/main/kernel/README.org" -o org/kernel.org
|
|
|
|
|
2022-12-10 14:05:00 +08:00
|
|
|
- name: Build with Org
|
|
|
|
run: |
|
|
|
|
cd org
|
|
|
|
make clean
|
|
|
|
make
|
2022-12-14 19:59:15 +08:00
|
|
|
cd ..
|
2023-02-18 20:58:53 +08:00
|
|
|
./patches/txt.sh
|
2022-12-10 14:05:00 +08:00
|
|
|
|
|
|
|
- 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: |
|
2022-12-14 19:59:15 +08:00
|
|
|
cd _site && tree
|
2022-12-13 17:29:08 +08:00
|
|
|
sudo ./patches/icons.sh
|
2022-12-18 12:59:59 +08:00
|
|
|
sudo ./patches/color.sh
|
2023-02-11 13:50:46 +08:00
|
|
|
sudo patch -p1 < ./patches/bbs_gbk_utf8-highlight-adwaita.patch
|
2022-12-10 14:05:00 +08:00
|
|
|
|
|
|
|
- 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
|
|
|
|
|