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.
2 parents 41fe629 + a7634e8 commit 37e77b2Copy full SHA for 37e77b2
.github/workflows/build.yml
@@ -22,7 +22,9 @@ jobs:
22
fetch-depth: 0
23
- run: git fetch --recurse-submodules=no https://github.com/adafruit/circuitpython refs/tags/*:refs/tags/*
24
- name: CircuitPython version
25
- run: git describe --dirty --tags
+ run: |
26
+ git describe --dirty --tags
27
+ echo "::set-env name=CP_VERSION::$(git describe --dirty --tags)"
28
- name: Set up Python 3.8
29
uses: actions/setup-python@v1
30
with:
@@ -68,7 +70,7 @@ jobs:
68
70
name: stubs
69
71
path: circuitpython-stubs*
72
- name: Docs
- run: sphinx-build -E -W -b html . _build/html
73
+ run: sphinx-build -E -W -b html -D version=${{ env.CP_VERSION }} -D release=${{ env.CP_VERSION }} . _build/html
74
- uses: actions/upload-artifact@v2
75
76
name: docs
0 commit comments