File tree Expand file tree Collapse file tree 3 files changed +10
-7
lines changed Expand file tree Collapse file tree 3 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 1
- name : Generate and push docs
1
+ name : Documentation
2
2
3
3
on :
4
4
# So we can trigger manually if needed
@@ -24,7 +24,7 @@ concurrency:
24
24
25
25
jobs :
26
26
generate-and-push :
27
- name : Generate and push docs
27
+ name : Generate and push
28
28
runs-on : ubuntu-latest
29
29
steps :
30
30
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # tag=v4.2.2
42
42
python-version : ' 3.10'
43
43
cache : ' pip'
44
44
45
+ # mike does not support giving CLI flags for mkdocs, but we also do not
46
+ # want to permanently enable strict mode, so here we enable it just for this
47
+ # task
48
+ - run : |
49
+ echo "strict: true" >> docs/mkdocs.yml
50
+
45
51
- run : make generate-api-docs deploy-docs
Original file line number Diff line number Diff line change 1
1
mike == 2.1.3
2
2
mkdocs == 1.5.3
3
3
mkdocs-awesome-pages-plugin == 2.9.2
4
- mkdocs-macros-plugin == 1.0.5
4
+ mkdocs-macros-plugin == 1.3.7
5
5
mkdocs-material == 9.5.17
6
6
mkdocs-material-extensions == 1.3.1
7
7
mkdocs-static-i18n == 1.2.2
Original file line number Diff line number Diff line change 14
14
# See the License for the specific language governing permissions and
15
15
# limitations under the License.
16
16
17
- set -o errexit
18
- set -o nounset
19
- set -o pipefail
20
- set -o xtrace
17
+ set -euo pipefail
21
18
22
19
REPO_ROOT=$( cd " $( dirname " ${BASH_SOURCE[0]} " ) /../.." && pwd)
23
20
cd " $REPO_ROOT /docs"
You can’t perform that action at this time.
0 commit comments