We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d9df173 + 5feb677 commit 7beef53Copy full SHA for 7beef53
2 files changed
lib/grom/version.rb
@@ -1,3 +1,3 @@
1
module Grom
2
- VERSION = '0.3.9'.freeze
+ VERSION = '0.3.10.pre'.freeze
3
end
makefile
@@ -0,0 +1,17 @@
+.PHONY: checkout_to_release deploy_to_release
+
+# Github variables
4
+GITHUB_API=https://api.github.com
5
+ORG=ukparliament
6
+REPO=grom
7
+LATEST_REL=$(GITHUB_API)/repos/$(ORG)/$(REPO)/releases
8
+REL_TAG=$(shell curl -s $(LATEST_REL) | jq -r '.[0].tag_name')
9
10
+checkout_to_release:
11
+ git checkout -b release $(REL_TAG)
12
13
+deploy_to_release:
14
+ rm -f *.gem
15
+ gem build *.gemspec
16
+ gem push *.gem
17
+ rm *.gem
0 commit comments