diff --git a/.circleci/config.yml b/.circleci/config.yml index ae48910a..83b38ee2 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -62,13 +62,15 @@ jobs: - store_artifacts: path: ~/Cider/dist/artifacts publish-github-release: - docker: - - image: cibuilds/github:0.10 - steps: - - attach_workspace: - at: ~/Cider/dist/artifacts - - run: - name: "Publish Release on GitHub" - command: | - ghr -t ${GITHUB_TOKEN} -u ${CIRCLE_PROJECT_USERNAME} -r "cider-releases" -c ${CIRCLE_SHA1} -n "${CIRCLE_BRANCH} build #${CIRCLE_BUILD_NUM}" -b "This release is made automatically from [this commit](https://github.com/ciderapp/Cider/commit/${CIRCLE_SHA1}) using [this CircleCI job.](${CIRCLE_BUILD_URL})" ~/Cider/dist/artifacts + working_directory: ~/Cider + docker: + - image: cibuilds/github:0.10 + steps: + - attach_workspace: + at: ~/Cider/dist/artifacts + - run: + name: "Publish Release on GitHub" + command: | + ghr -t ${GITHUB_TOKEN} -u ${CIRCLE_PROJECT_USERNAME} -r "cider-releases" -c ${CIRCLE_SHA1} -n "${CIRCLE_BRANCH} build #${CIRCLE_BUILD_NUM}" -b "This release is made automatically from [this commit](https://github.com/ciderapp/Cider/commit/${CIRCLE_SHA1}) using [this CircleCI job.](${CIRCLE_BUILD_URL})" ~/Cider/dist/artifacts +