mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2024-12-29 16:29:40 +00:00
Adding checkdocs workflow.
This commit is contained in:
parent
f2d26b6513
commit
eecb539080
2 changed files with 20 additions and 5 deletions
|
@ -9,9 +9,9 @@ on: [push]
|
|||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
||||
jobs:
|
||||
# This workflow contains a single job called "gendocs"
|
||||
gendocs:
|
||||
CheckDocs:
|
||||
# The type of runner that the job will run on
|
||||
runs-on: ubuntu-16.04
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
# Steps represent a sequence of tasks that will be executed as part of the job
|
||||
steps:
|
||||
|
@ -19,6 +19,21 @@ jobs:
|
|||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
||||
# Runs a single command using the runners shell
|
||||
- name: Wiki Checkout
|
||||
run: |
|
||||
cd $GITHUB_WORKSPACE
|
||||
git clone https://github.com/revarbat/BOSL2.wiki.git
|
||||
|
||||
- name: Install OpenSCAD
|
||||
run: sudo apt-get install openscad
|
||||
run: sudo snap install openscad
|
||||
|
||||
- name: Generate Index
|
||||
run: |
|
||||
cd $GITHUB_WORKSPACE
|
||||
./scripts/make_all_docs -i
|
||||
|
||||
- name: Generating Docs
|
||||
run: |
|
||||
cd $GITHUB_WORKSPACE
|
||||
./scripts/make_all_docs -i
|
||||
|
|
@ -8,7 +8,7 @@
|
|||
//////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
BOSL_VERSION = [2,0,342];
|
||||
BOSL_VERSION = [2,0,343];
|
||||
|
||||
|
||||
// Section: BOSL Library Version Functions
|
||||
|
|
Loading…
Reference in a new issue