Skip to content

Commit aca8b7b

Browse files
committed
MNT: Fixups missed in Travis CI -> GitHub Actions migration 77b47b0
1 parent 252cabd commit aca8b7b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/deploy-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Install dependencies
3131
run: |
3232
pip install -U pip setuptools wheel
33-
pip install -U .[doc,test]
33+
pip install -U -e .[doc,test]
3434
3535
- name: Build docs
3636
run: time catchsegv doc/build.sh

doc/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
set -eu
3-
IS_RELEASE=${TRAVIS_TAG+1}
3+
IS_RELEASE="$([[ "$GITHUB_REF" == refs/tags/* ]] && echo 1 || true)"
44

55
die () { echo "ERROR: $*" >&2; exit 2; }
66

0 commit comments

Comments
 (0)