Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mattstratton/castanet.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Stratton <matt.stratton@gmail.com>2019-11-16 18:52:41 +0300
committerMatt Stratton <matt.stratton@gmail.com>2019-11-16 18:52:41 +0300
commit2d0c0f7c16705f840ded8d40f54cd68723bf2317 (patch)
tree5073a097c484a1726047775d2313323f2b285c4b
parente1c6318b44634b381610e66f7e3ce6bbf24a57ae (diff)
More workspace fun
-rw-r--r--.circleci/config.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 898a69b..45185a7 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -141,7 +141,7 @@ jobs:
pwd
zip -r release/castanet-${CIRCLE_TAG}.zip . -x \*.git\* \*exampleSite\* appveyor.yml \*.travis.ci\* \*tests\* \*bin\* \*build\* \*release\* config.codekit3 \*node_modules\* gulpfile.js netlify.toml package.json STYLE.md *\node_modules\* \*test\*
- persist_to_workspace:
- root: /tmp/workspace
+ root: ~/castanet/workspace
paths:
- release
@@ -152,12 +152,12 @@ jobs:
steps:
- attach_workspace:
- at: /tmp/workspace
+ at: ~/castanet/workspace
- run:
name: "Publish release on GitHub"
command: |
VERSION=${CIRCLE_TAG}
- ghr -t ${GITHUB_TOKEN} -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -c ${CIRCLE_SHA1} -delete ${VERSION} /tmp/workspace/
+ ghr -t ${GITHUB_TOKEN} -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -c ${CIRCLE_SHA1} -delete ${VERSION} ~/castanet/workspace/
workflows:
version: 2