Skip to content
This repository was archived by the owner on Feb 27, 2026. It is now read-only.

Commit 3f83a20

Browse files
author
Oliver Borchert
committed
Update CI
1 parent 8bca216 commit 3f83a20

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.circleci/config.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,7 @@ jobs:
3535
3636
mv _static static
3737
for file in ./**/*.html; do
38-
cat $file | sed 's/_static/static/g' > ${file}_
39-
mv ${file}_ $file
38+
sed -i 's/_static/static/g' $file
4039
done
4140
4241
git init

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
import os
33

44
project = 'PyCave'
5-
version = os.getenv('CIRCLE_TAG')
6-
release = os.getenv('CIRCLE_TAG')
5+
version = os.getenv('CIRCLE_TAG', '0.0.0')
6+
release = os.getenv('CIRCLE_TAG', '0.0.0')
77

88
author = 'Oliver Borchert'
99
copyright = f'{datetime.datetime.now().year}, {author}' # pylint: disable=redefined-builtin

0 commit comments

Comments
 (0)