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 252cabd commit aca8b7bCopy full SHA for aca8b7b
.github/workflows/deploy-docs.yml
@@ -30,7 +30,7 @@ jobs:
30
- name: Install dependencies
31
run: |
32
pip install -U pip setuptools wheel
33
- pip install -U .[doc,test]
+ pip install -U -e .[doc,test]
34
35
- name: Build docs
36
run: time catchsegv doc/build.sh
doc/build.sh
@@ -1,6 +1,6 @@
1
#!/bin/bash
2
set -eu
3
-IS_RELEASE=${TRAVIS_TAG+1}
+IS_RELEASE="$([[ "$GITHUB_REF" == refs/tags/* ]] && echo 1 || true)"
4
5
die () { echo "ERROR: $*" >&2; exit 2; }
6
0 commit comments