-
Notifications
You must be signed in to change notification settings - Fork 1
41 lines (33 loc) · 1.01 KB
/
cd-config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Workflow for processing and publishing bikeshed documents to github pages
name: Publish documents
on:
push:
# only concerned with changes in the main branch
branches: [ main ]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.8'
- name: Upgrade pip
run: python3 -m pip install --upgrade pip
- name: Install Bikeshed
run: |
python3 -m pip install --upgrade bikeshed
bikeshed update
- name: Generate HTML
run: for bsdoc in ./*.bs; do bikeshed spec $bsdoc; done
- name: Create publication
run: |
mkdir publish
for file in index.html; do cp $file ./publish/; done
- name: Publish to GitHub pages
uses: peaceiris/actions-gh-pages@v4
with:
publish_dir: ./publish
personal_token: ${{ secrets.GITHUB_TOKEN }}