Sha256: 6b7b898a2e616541d8740ebfcf30c07b65b607d3e5512c0db662e9320f036877

Contents?: true

Size: 397 Bytes

Versions: 8

Compression:

Stored size: 397 Bytes

Contents

.PHONY: checkout_to_release deploy_to_release

# Github variables
GITHUB_API=https://api.github.com
ORG=ukparliament
REPO=parliament-ntriple
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
parliament-ntriple-0.5.1 makefile
parliament-ntriple-0.5.0 makefile
parliament-ntriple-0.4.0 makefile
parliament-ntriple-0.3.0 makefile
parliament-ntriple-0.2.1 makefile
parliament-ntriple-0.2.0 makefile
parliament-ntriple-0.1.5 makefile
parliament-ntriple-0.1.4.pre2 makefile