mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2024-12-29 16:29:40 +00:00
Attempt to fix github action errorss.
This commit is contained in:
parent
646b179b60
commit
45e68af2d7
3 changed files with 7 additions and 10 deletions
2
.github/workflows/docsgen.yml
vendored
2
.github/workflows/docsgen.yml
vendored
|
@ -14,7 +14,7 @@ jobs:
|
|||
- name: Checkout Wiki
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
repository: ${{github.repository}}.wiki
|
||||
repository: https://github.com/revarbat/BOSL2.wiki.git
|
||||
path: BOSL2.wiki
|
||||
|
||||
- name: Install gifsicle
|
||||
|
|
14
.github/workflows/main.yml
vendored
14
.github/workflows/main.yml
vendored
|
@ -8,11 +8,6 @@ jobs:
|
|||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Clone Wiki
|
||||
run: |
|
||||
cd $GITHUB_WORKSPACE
|
||||
git clone https://github.com/revarbat/BOSL2.wiki.git
|
||||
|
||||
- name: Install OpenSCAD
|
||||
run: |
|
||||
cd $GITHUB_WORKSPACE
|
||||
|
@ -33,9 +28,10 @@ jobs:
|
|||
uses: actions/checkout@v2
|
||||
|
||||
- name: Clone Wiki
|
||||
run: |
|
||||
cd $GITHUB_WORKSPACE
|
||||
git clone https://github.com/revarbat/BOSL2.wiki.git
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
repository: https://github.com/revarbat/BOSL2.wiki.git
|
||||
path: BOSL2.wiki
|
||||
|
||||
- name: Apt Update
|
||||
run: sudo apt update
|
||||
|
@ -53,7 +49,7 @@ jobs:
|
|||
sudo mv OpenSCAD-2021.01*-x86_64.AppImage /usr/local/bin/openscad
|
||||
sudo chmod +x /usr/local/bin/openscad
|
||||
|
||||
- name: Generating Docs
|
||||
- name: Checking Docs
|
||||
run: |
|
||||
cd $GITHUB_WORKSPACE
|
||||
echo "::add-matcher::.github/openscad_docsgen.json"
|
||||
|
|
|
@ -45,6 +45,7 @@ function ident(n) = [
|
|||
// bool = is_affine(x,<dim>);
|
||||
// Topics: Affine, Matrices, Transforms, Type Checking
|
||||
// See Also: is_matrix()
|
||||
// fleegul()
|
||||
// Description:
|
||||
// Tests if the given value is an affine matrix, possibly also checking it's dimenstion.
|
||||
// Arguments:
|
||||
|
|
Loading…
Reference in a new issue