File tree Expand file tree Collapse file tree 4 files changed +15
-4
lines changed Expand file tree Collapse file tree 4 files changed +15
-4
lines changed Original file line number Diff line number Diff line change 2626 steps :
2727 - checkout
2828 - *init
29- - run :
30- name : Install Hub dependency
31- command : install_hub
29+ # - run:
30+ # name: Install Hub dependency
31+ # command: install_hub
3232 - run :
3333 name : Login on Dockerhub
3434 command : login_to_dockerhub
Original file line number Diff line number Diff line change @@ -50,7 +50,8 @@ function publish_new_version() {
5050 gem push ./* .gem
5151
5252 # Create gh tag
53- tag_version
53+ # Skip until we have a better way to handle this
54+ # tag_version
5455
5556 # Trigger hombrew release
5657 trigger_hombrew_release
Original file line number Diff line number Diff line change 22coverage
33spec /reports
44base_rubocop.yml
5+ artifacts.tar.gz
Original file line number Diff line number Diff line change 11.PHONY : install uninstall image test citest bundle
22
3+ VERSION ?= $(shell cat VERSION)
4+ ARTIFACTS_OUTPUT ?= artifacts.tar.gz
35PREFIX ?= /usr/local
46SKIP_ENGINES ?= 0
57
@@ -59,3 +61,10 @@ bundle:
5961 --volume $(PWD ) :/usr/src/app \
6062 --workdir /usr/src/app \
6163 codeclimate/codeclimate $(BUNDLE_ARGS )
64+
65+ build-gem :
66+ gem build ./* .gemspec
67+
68+ new-github-release : build-gem
69+ tar -c -f " ${ARTIFACTS_OUTPUT} " ./* .gem
70+ gh release create " v${VERSION} " " ${ARTIFACTS_OUTPUT} " --title " v${VERSION} " --notes " Release v${VERSION} "
You can’t perform that action at this time.
0 commit comments