diff options
| author | Scott Shawcroft <scott@adafruit.com> | 2020-06-15 14:54:22 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-15 14:54:22 -0700 |
| commit | 08c8198fbc0dde97d4731f4383eb40bfd3a4d443 (patch) | |
| tree | dbfb1e26d89422972e9f32fc5716dc1b7be882d0 | |
| parent | 8ff0a3df4227fb7544186a2182b65a20c51b19c6 (diff) | |
| parent | 52b3e1faba958b351dc0bb040b2eee1fabb45007 (diff) | |
Merge pull request #3033 from jepler/actions-doc-artifact
actions: upload artifacts for stubs & docs
| -rw-r--r-- | .github/workflows/build.yml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 00454cc2d..b0cfabbf7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -66,8 +66,16 @@ jobs: working-directory: tests - name: Stubs run: make stubs -j2 + - uses: actions/upload-artifact@v2 + with: + name: stubs + path: circuitpython-stubs* - name: Docs run: sphinx-build -E -W -b html . _build/html + - uses: actions/upload-artifact@v2 + with: + name: docs + path: _build/html - name: Translations run: make check-translate - name: New boards check |
