更新文档以适应 UniversalOJ/UOJ-System#138 中的变化 #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Site | |
on: | |
push: | |
branches: ['sources', 'generator'] | |
pull_request: | |
branches: ['sources', 'generator'] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install dependencies | |
run: | | |
sudo apt-get install python3-pip | |
pip3 install markdown\<3.0.0 pygments | |
- name: Checkout sources branch | |
uses: actions/checkout@v4 | |
with: | |
ref: sources | |
path: sources | |
- name: Checkout generator branch | |
uses: actions/checkout@v4 | |
with: | |
ref: generator | |
path: generator | |
- name: Copy files | |
run: | | |
cp -a generator/webroot workdir | |
cp -a sources/{post,content.php,index.md} generator/{mdgen.py,sitegen.php} workdir | |
mv workdir/img/favicon.ico workdir/favicon.ico | |
- name: Generate site | |
run: | | |
cd workdir | |
php sitegen.php | |
rm -r post/*.md index.md *.{py,php} | |
- name: Upload GitHub Pages artifact | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: workdir | |
deploy: | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
needs: build | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
steps: | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 |