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 19:06:03 +0300
committerMatt Stratton <matt.stratton@gmail.com>2019-11-16 19:06:03 +0300
commit45374ad3af2ce61d62c76cdd22541e1796da3bea (patch)
tree76690588bff81d29ab6ee89214a77ce4511376e9 /.circleci
parent47b46f7a830b4ad65788320a4ff69c89af7bcf92 (diff)
Release troubleshooting
Diffstat (limited to '.circleci')
-rw-r--r--.circleci/config.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 7d70df6..de1e5af 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -154,10 +154,13 @@ jobs:
- attach_workspace:
at: ~/castanet/workspace
- run:
+ name: "List contents"
+ command: pwd && ls
+ - 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} ~/castanet/workspace/
+ ghr -t ${GITHUB_TOKEN} -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -c ${CIRCLE_SHA1} -delete ${VERSION} ~/castanet/workspace/release/
workflows:
version: 2