We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bf967b commit 1f2d2d1Copy full SHA for 1f2d2d1
.github/workflows/development.yaml
@@ -9,6 +9,23 @@ on:
9
- '**' # every branch
10
- '!stage*' # exclude branches beginning with stage
11
jobs:
12
+ build-docs:
13
+ runs-on: ubuntu-latest
14
+ env:
15
+ DOCKER_CLIENT_TIMEOUT: "120"
16
+ COMPOSE_HTTP_TIMEOUT: "120"
17
+ steps:
18
+ - uses: actions/checkout@v2
19
+ - name: Compile docs static artifacts
20
+ run: |
21
+ export HOST_UID=$(id -u)
22
+ docker-compose -f ./docs-api/docker-compose.yaml up --exit-code-from docs-builder --build
23
+ - name: Add docs static artifacts
24
+ uses: actions/upload-artifact@v2
25
+ with:
26
+ name: docs-api-static
27
+ path: docs-api/build/html
28
+ retention-days: 1
29
test:
30
if: github.event_name == 'push' || github.event_name == 'pull_request'
31
runs-on: ubuntu-latest
.nojekyll
0 commit comments