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:50:25 +0300
committerMatt Stratton <matt.stratton@gmail.com>2019-11-16 18:50:25 +0300
commit50675e453e8218743c37e35c5230edcda63e42f3 (patch)
treedb7d47210cbfc06fad3b89ec3dd298756698191c /.circleci
parent07d95476d0b2b6deadf642ddf999c982cd658151 (diff)
Change workspace paths
Diffstat (limited to '.circleci')
-rw-r--r--.circleci/config.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 7c55c18..898a69b 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: workspace
+ root: /tmp/workspace
paths:
- release
@@ -152,12 +152,12 @@ jobs:
steps:
- attach_workspace:
- at: ./artifacts
+ at: /tmp/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} ./artifacts/
+ ghr -t ${GITHUB_TOKEN} -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -c ${CIRCLE_SHA1} -delete ${VERSION} /tmp/workspace/
workflows:
version: 2