Sha256: d5a126da023cbc90721720f23c5fb40917e4db3542c1e02cbfe3fbce68b13109

Contents?: true

Size: 383 Bytes

Versions: 8

Compression:

Stored size: 383 Bytes

Contents

.PHONY: checkout_to_release deploy_to_release

# Github variables
GITHUB_API=https://api.github.com
ORG=ukparliament
REPO=grom
LATEST_REL=$(GITHUB_API)/repos/$(ORG)/$(REPO)/releases
REL_TAG=$(shell curl -s $(LATEST_REL) | jq -r '.[0].tag_name')

checkout_to_release:
	git checkout -b release $(REL_TAG)

deploy_to_release:
	rm -f *.gem
	gem build *.gemspec
	gem push *.gem
	rm *.gem

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
grom-1.0.1 makefile
grom-1.0.0 makefile
grom-0.6.1 makefile
grom-0.6.0 makefile
grom-0.5.1 makefile
grom-0.5.0 makefile
grom-0.4.0 makefile
grom-0.3.10.pre makefile