From a8df561a117ca31c19d78101a048d4089578b608 Mon Sep 17 00:00:00 2001 From: Daniel Hu Date: Thu, 15 Sep 2022 16:14:25 +0800 Subject: [PATCH] fix: ci template updated and Makefile updated Signed-off-by: Daniel Hu --- .github/ISSUE_TEMPLATE/bug-report.yaml | 4 ++-- Makefile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug-report.yaml b/.github/ISSUE_TEMPLATE/bug-report.yaml index 6563352c9..73be41975 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yaml +++ b/.github/ISSUE_TEMPLATE/bug-report.yaml @@ -28,8 +28,8 @@ body: label: 'DevStream Version' description: "To find out the version run: `dtm version`" options: - - < v0.8.0 - - v0.8.0 + - < v0.9.0 + - v0.9.0 - latest validations: required: true diff --git a/Makefile b/Makefile index ff0e6f571..25368f4fe 100644 --- a/Makefile +++ b/Makefile @@ -59,7 +59,7 @@ clean: ## Remove dtm and plugins. It's best to run a "clean" before "build". build-core: generate fmt lint vet mod-tidy ## Build dtm core only, without plugins, locally. go build -trimpath -gcflags="all=-N -l" -ldflags "$(GO_LDFLAGS)" -o dtm-${GOOS}-${GOARCH} ./cmd/devstream/ @-rm -f dtm - @mv dtm-${GOOS}-${GOARCH} dtm + @cp dtm-${GOOS}-${GOARCH} dtm @echo "${GREEN}✔'dtm' has been generated in the current directory($(PWD))!${RESET}" .PHONY: build-plugin.%