Skip to content

Commit

Permalink
feat(dist): release scss distributable in the repository
Browse files Browse the repository at this point in the history
  • Loading branch information
Ferit Topcu committed Jun 22, 2018
1 parent b9a06ba commit 3fd298c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ deployment:
branch: master
commands:
- gulp bump-version changelog
- git add package.json doc CHANGELOG.md
- gulp build:dist
- git add package.json doc dist CHANGELOG.md
- git commit -m "Bumped version to $(jq -r .version package.json) [skip ci]"
- git tag -f -a $(jq -r .version package.json) -m "Automatic release via CircleCI"
- git push origin $CIRCLE_BRANCH
Expand Down
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,4 +114,4 @@ gulp.task('clean:dist', () =>
del(['dist/**'])
);

gulp.task('build:dist', gulp.series('clean:dist', 'build:sass'));
gulp.task('build:dist', gulp.series('clean:dist', 'lint-sass', 'build:sass'));

0 comments on commit 3fd298c

Please sign in to comment.