Skip to content

Commit

Permalink
Enable circleci workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
pavel-github committed Dec 9, 2019
1 parent 26a9807 commit 80ac1df
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,3 +56,20 @@ jobs:
name: Publish release on GitHub
command: |
ghr --token ${GITHUB_TOKEN} --username ${CIRCLE_PROJECT_USERNAME} --repository ${CIRCLE_PROJECT_REPONAME} -c ${CIRCLE_SHA1} ${CIRCLE_TAG} ./dist/
workflows:
version: 2
build-and-deploy:
jobs:
- build:
filters:
tags:
only: /.*/
- github-release:
requires:
- build
filters:
tags:
only: /^v.*/
branches:
ignore: /.*/

0 comments on commit 80ac1df

Please sign in to comment.