mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2025-01-01 09:49:45 +00:00
Workflow testing.
This commit is contained in:
parent
7101ab2008
commit
a44ff235ab
2 changed files with 7 additions and 4 deletions
4
.github/workflows/gen_docs.yml
vendored
4
.github/workflows/gen_docs.yml
vendored
|
@ -4,6 +4,8 @@ on: [workflow_dispatch]
|
||||||
jobs:
|
jobs:
|
||||||
RegenerateDocs:
|
RegenerateDocs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
env:
|
||||||
|
OPENSCADPATH: $(dirname $GITHUB_WORKSPACE)
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
@ -32,8 +34,6 @@ jobs:
|
||||||
|
|
||||||
- name: Generate Docs
|
- name: Generate Docs
|
||||||
uses: GabrielBB/xvfb-action@v1
|
uses: GabrielBB/xvfb-action@v1
|
||||||
env:
|
|
||||||
OPENSCADPATH: $(dirname $GITHUB_WORKSPACE)
|
|
||||||
with:
|
with:
|
||||||
run: openscad-docsgen -f
|
run: openscad-docsgen -f
|
||||||
working-directory: $GITHUB_WORKSPACE
|
working-directory: $GITHUB_WORKSPACE
|
||||||
|
|
7
.github/workflows/gen_tutorials.yml
vendored
7
.github/workflows/gen_tutorials.yml
vendored
|
@ -4,6 +4,8 @@ on: [workflow_dispatch]
|
||||||
jobs:
|
jobs:
|
||||||
RegenerateTutorials:
|
RegenerateTutorials:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
env:
|
||||||
|
OPENSCADPATH: $(dirname $GITHUB_WORKSPACE)
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
@ -35,10 +37,11 @@ jobs:
|
||||||
cd $GITHUB_WORKSPACE
|
cd $GITHUB_WORKSPACE
|
||||||
./scripts/check_for_tabs.sh
|
./scripts/check_for_tabs.sh
|
||||||
|
|
||||||
|
- name: FooTest
|
||||||
|
run: echo $OPENSCADPATH
|
||||||
|
|
||||||
- name: Generate Tutorials
|
- name: Generate Tutorials
|
||||||
uses: GabrielBB/xvfb-action@v1
|
uses: GabrielBB/xvfb-action@v1
|
||||||
env:
|
|
||||||
OPENSCADPATH: $(dirname $GITHUB_WORKSPACE)
|
|
||||||
with:
|
with:
|
||||||
run: openscad-mdimggen -f
|
run: openscad-mdimggen -f
|
||||||
working-directory: $GITHUB_WORKSPACE
|
working-directory: $GITHUB_WORKSPACE
|
||||||
|
|
Loading…
Reference in a new issue