mirror of
https://github.com/strongdm/comply
synced 2024-11-05 23:45:25 +00:00
Slack webhook to env var
This commit is contained in:
parent
08d3e750fa
commit
9e9d23c60d
7
Makefile
7
Makefile
@ -71,6 +71,9 @@ endif
|
|||||||
ifndef COMPLY_TAPDIR
|
ifndef COMPLY_TAPDIR
|
||||||
$(error COMPLY_TAPDIR must be set to the path of the comply homebrew tap repo)
|
$(error COMPLY_TAPDIR must be set to the path of the comply homebrew tap repo)
|
||||||
endif
|
endif
|
||||||
|
ifndef COMPLY_RELEASE_WEBHOOK
|
||||||
|
$(error COMPLY_RELEASE_WEBHOOK must be set to a webhook for the release Slack channel)
|
||||||
|
endif
|
||||||
|
|
||||||
release: release-env dist release-deps
|
release: release-env dist release-deps
|
||||||
$(eval VERSION := $(shell git describe --tags --always --dirty="-dev"))
|
$(eval VERSION := $(shell git describe --tags --always --dirty="-dev"))
|
||||||
@ -104,11 +107,11 @@ release: release-env dist release-deps
|
|||||||
|
|
||||||
patch-release: release-env patch release
|
patch-release: release-env patch release
|
||||||
$(eval VERSION := $(shell git describe --tags --always --dirty="-dev"))
|
$(eval VERSION := $(shell git describe --tags --always --dirty="-dev"))
|
||||||
curl -X POST --data-urlencode 'payload={"channel": "#release", "username": "release", "text": "comply $(VERSION) released", "icon_emoji": ":shipit:"}' https://hooks.slack.com/services/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
|
curl -X POST --data-urlencode 'payload={"channel": "#release", "username": "release", "text": "comply $(VERSION) released", "icon_emoji": ":shipit:"}' $$COMPLY_RELEASE_WEBHOOK
|
||||||
|
|
||||||
minor-release: release-env minor release
|
minor-release: release-env minor release
|
||||||
$(eval VERSION := $(shell git describe --tags --always --dirty="-dev"))
|
$(eval VERSION := $(shell git describe --tags --always --dirty="-dev"))
|
||||||
curl -X POST --data-urlencode 'payload={"channel": "#release", "username": "release", "text": "comply $(VERSION) released", "icon_emoji": ":shipit:"}' https://hooks.slack.com/services/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
|
curl -X POST --data-urlencode 'payload={"channel": "#release", "username": "release", "text": "comply $(VERSION) released", "icon_emoji": ":shipit:"}' $$COMPLY_RELEASE_WEBHOOK
|
||||||
|
|
||||||
docker-release:
|
docker-release:
|
||||||
docker build --build-arg COMPLY_VERSION=`cat VERSION` -t strongdm/comply .
|
docker build --build-arg COMPLY_VERSION=`cat VERSION` -t strongdm/comply .
|
||||||
|
Loading…
Reference in New Issue
Block a user