diff options
| author | Jeff Epler <jepler@gmail.com> | 2020-05-14 21:03:49 -0500 |
|---|---|---|
| committer | Jeff Epler <jepler@gmail.com> | 2020-05-14 21:03:49 -0500 |
| commit | 52b3e1faba958b351dc0bb040b2eee1fabb45007 (patch) | |
| tree | be77c813c4871d842cd300a4dcc5e7f33efd4c31 /.github | |
| parent | 794d5f5900410730b84a1ab47c2c286b954b5c0a (diff) | |
actions: upload artifacts for stubs & docs
Diffstat (limited to '.github')
| -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 4216f6139..de3aa5a9e 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 |
