Skip to content

Commit

Permalink
Updated file from Ben
Browse files Browse the repository at this point in the history
  • Loading branch information
DHaussermann authored Mar 24, 2020
1 parent 7ea0b91 commit 7698d66
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -160,3 +160,31 @@ jobs:
name: "Publish Release on Github"
command: |
ghr -t ${GITHUB_TOKEN} -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -b "$(< ./dist/release-notes.md)" -c ${CIRCLE_SHA1} -n ${CIRCLE_TAG} -delete ${CIRCLE_TAG} dist/*.tar.gz
workflows:
version: 2
ci:
jobs:
- lint:
filters:
tags:
only: /^v.*/
- coverage:
filters:
tags:
only: /^v.*/
- build:
filters:
tags:
only: /^v.*/
- deploy-release-github:
filters:
tags:
only: /^v.*/
branches:
ignore: /.*/
context: matterbuild-github-token
requires:
- lint
- coverage
- build

0 comments on commit 7698d66

Please sign in to comment.