Skip to content

Commit

Permalink
Re-enable release builds without -delete flag
Browse files Browse the repository at this point in the history
  • Loading branch information
johanbrandhorst committed Dec 8, 2018
1 parent 5b7aa47 commit c8ade95
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ jobs:
name: "Publish Release on GitHub"
command: |
VERSION=$(cat /workspace/VERSION)
ghr -t ${GITHUB_TOKEN} -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -c ${CIRCLE_SHA1} -delete ${VERSION} /workspace/release/
ghr -t ${GITHUB_TOKEN} -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -c ${CIRCLE_SHA1} ${VERSION} /workspace/release/
workflows:
version: 2
all:
Expand Down Expand Up @@ -198,14 +198,14 @@ workflows:
ignore: /.*/
tags:
only: /^v\d+\.\d+\.\d+$/
# - publish_github_release:
# requires:
# - write_release_version
# - build_linux_release
# - build_darwin_release
# - build_windows_release
# filters:
# branches:
# ignore: /.*/
# tags:
# only: /^v\d+\.\d+\.\d+$/
- publish_github_release:
requires:
- write_release_version
- build_linux_release
- build_darwin_release
- build_windows_release
filters:
branches:
ignore: /.*/
tags:
only: /^v\d+\.\d+\.\d+$/

0 comments on commit c8ade95

Please sign in to comment.