mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2025-01-30 00:09:37 +00:00
Try using appimage in github actions.
This commit is contained in:
parent
1d8e2ddcbc
commit
fa277d1fd3
2 changed files with 14 additions and 5 deletions
17
.github/workflows/checkdocs.yml
vendored
17
.github/workflows/checkdocs.yml
vendored
|
@ -36,16 +36,25 @@ jobs:
|
|||
- name: Install Pillow
|
||||
run: sudo pip3 install Pillow
|
||||
|
||||
- name: Install OpenSCAD
|
||||
run: sudo apt-get install openscad
|
||||
- name: Install wget
|
||||
run: sudo apt-get install wget
|
||||
|
||||
- name: Generating Docs
|
||||
- name: Get OpenSCAD Appimage
|
||||
run: |
|
||||
cd $GITHUB_WORKSPACE
|
||||
./scripts/make_all_docs.sh -i
|
||||
wget https://files.openscad.org/OpenSCAD-2019.05-x86_64.AppImage
|
||||
mv OpenSCAD-2019.05-x86_64.AppImage openscad
|
||||
chmod +x openscad
|
||||
|
||||
- name: Generate Index
|
||||
run: |
|
||||
cd $GITHUB_WORKSPACE
|
||||
export PATH=$GITHUB_WORKSPACE:$PATH
|
||||
./scripts/genindex.sh
|
||||
|
||||
- name: Generating Docs
|
||||
run: |
|
||||
cd $GITHUB_WORKSPACE
|
||||
export PATH=$GITHUB_WORKSPACE:$PATH
|
||||
./scripts/make_all_docs.sh -i
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
//////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
BOSL_VERSION = [2,0,348];
|
||||
BOSL_VERSION = [2,0,349];
|
||||
|
||||
|
||||
// Section: BOSL Library Version Functions
|
||||
|
|
Loading…
Reference in a new issue