@darren-valent/cdk-ec2-key-pair
Version:
CDK Construct for managing EC2 key pairs
21 lines (14 loc) • 318 B
Plain Text
SHELL := /bin/bash
VERSION := $(shell cat VERSION)
tag:
@git tag -a "v$(VERSION)" -m 'Creates tag "v$(VERSION)"'
@git push --tags
untag:
@git push --delete origin "v$(VERSION)"
@git tag --delete "v$(VERSION)"
release: tag
re-release: untag tag
push:
git commit -am testing
git push
update: push re-release