BOSL2/.github/workflows/docsgen.yml

65 lines
1.7 KiB
YAML
Raw Normal View History

name: DocsGen
2020-07-07 07:08:42 +00:00
on:
2021-05-22 06:09:14 +00:00
pull_request:
2020-07-07 07:08:42 +00:00
branches:
- master
2021-05-22 06:09:14 +00:00
types: [closed]
workflow_dispatch:
branches:
- master
2020-07-07 07:08:42 +00:00
jobs:
GenerateDocs:
2021-05-22 06:09:14 +00:00
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
2020-07-07 07:08:42 +00:00
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Checkout Wiki
uses: actions/checkout@v2
with:
2021-05-16 19:52:31 +00:00
repository: revarbat/BOSL2.wiki
path: BOSL2.wiki
2020-07-07 07:08:42 +00:00
- name: Apt Update
run: sudo apt update
- name: Install Packages
run: sudo apt-get install -y python3-pip python3-dev python3-setuptools python3-pil gifsicle
2020-07-07 07:08:42 +00:00
- name: Install openscad-docsgen
run: sudo pip3 install openscad_docsgen
- name: Install gifsicle
run: sudo pip3 install gifsicle
2020-07-07 07:08:42 +00:00
- name: Install OpenSCAD
run: |
cd $GITHUB_WORKSPACE
wget https://files.openscad.org/OpenSCAD-2021.01-x86_64.AppImage
sudo mv OpenSCAD-2021.01*-x86_64.AppImage /usr/local/bin/openscad
sudo chmod +x /usr/local/bin/openscad
2020-07-07 07:08:42 +00:00
- name: Generating Docs
run: |
cd $GITHUB_WORKSPACE
export OPENSCADPATH=$(dirname $GITHUB_WORKSPACE)
echo "::add-matcher::.github/openscad_docsgen.json"
openscad-docsgen -ticmI *.scad
cd BOSL2.wiki
2021-02-20 04:02:24 +00:00
git config user.name github-actions
git config user.email github-actions@github.com
git add --all
2021-02-27 02:01:34 +00:00
git commit -m "Wiki docs auto-regen." && git push || true
2020-07-07 07:08:42 +00:00
- name: Bump Release Version
run: |
cd $GITHUB_WORKSPACE
./scripts/increment_version.sh
2021-02-20 04:02:24 +00:00
git config user.name github-actions
git config user.email github-actions@github.com
git add version.scad
2021-02-27 02:01:34 +00:00
git commit -m "Bump release version." && git push || true
2020-07-07 07:08:42 +00:00