From fae9145eebdc4021cf85483afe82f1fd910aaa68 Mon Sep 17 00:00:00 2001 From: Quacksire <19170969+quacksire@users.noreply.github.com> Date: Tue, 15 Mar 2022 19:24:47 -0700 Subject: [PATCH] Updated config.yml --- .circleci/config.yml | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) 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 +