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
|
2024-03-30 16:49:12 +08:00
|
|
|
uses: actions/checkout@v4
|
2024-03-30 12:11:56 +08:00
|
|
|
with:
|
|
|
|
fetch-depth: 30
|
|
|
|
fetch-tags: true
|
2022-12-10 14:05:00 +08:00
|
|
|
|
|
|
|
- name: Install Emacs
|
|
|
|
uses: purcell/setup-emacs@master
|
|
|
|
with:
|
2024-03-30 16:49:12 +08:00
|
|
|
version: 29.3
|
2022-12-10 14:05:00 +08:00
|
|
|
|
2024-03-30 16:49:12 +08:00
|
|
|
- name: make
|
2022-12-20 10:03:59 +08:00
|
|
|
run: |
|
2024-03-30 16:49:12 +08:00
|
|
|
sudo apt-get -q install pandoc
|
2022-12-10 14:05:00 +08:00
|
|
|
make
|
2024-03-30 16:49:12 +08:00
|
|
|
curl "https://raw.githubusercontent.com/dongdigua/configs/main/.tmux.conf" -o misc/tmux.conf
|
2023-02-18 20:58:53 +08:00
|
|
|
./patches/txt.sh
|
2024-03-30 16:49:12 +08:00
|
|
|
./patches/color.sh
|
2022-12-10 14:05:00 +08:00
|
|
|
|
|
|
|
- name: Setup Pages
|
2024-03-30 16:49:12 +08:00
|
|
|
uses: actions/configure-pages@v5
|
2022-12-10 14:05:00 +08:00
|
|
|
|
|
|
|
- name: Build with Jekyll
|
|
|
|
uses: actions/jekyll-build-pages@v1
|
|
|
|
with:
|
|
|
|
source: ./
|
|
|
|
destination: ./_site
|
|
|
|
|
|
|
|
- name: Upload artifact
|
2024-03-30 16:49:12 +08:00
|
|
|
uses: actions/upload-pages-artifact@v3
|
2022-12-10 14:05:00 +08:00
|
|
|
|
|
|
|
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
|
2024-03-30 16:49:12 +08:00
|
|
|
uses: actions/deploy-pages@v4
|
2022-12-10 14:05:00 +08:00
|
|
|
|