Skip to content

Commit 5d3a305

Browse files
committed
see if we can reuse venv (without restore cache)
1 parent 944627a commit 5d3a305

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.circleci/config.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,13 @@ jobs:
5454
ghp_deploy:
5555
docker:
5656
- image: circleci/python:3.6.1
57+
working_directory: ~/repo
5758
steps:
5859
- run:
5960
name: deploy to github
60-
command: ghp-import -p -f output -m `git log --format=%B -n 1 $CIRCLE_SHA1`
61+
command: |
62+
. venv/bin/activate
63+
ghp-import -p -f output -m `git log --format=%B -n 1 $CIRCLE_SHA1`
6164
6265
workflows:
6366
version: 2

0 commit comments

Comments
 (0)