mirror of
https://github.com/thegeeklab/wp-gitea-release.git
synced 2024-11-22 10:10:40 +00:00
Make the builds reproducable based on commit sha
This commit is contained in:
parent
7b5eb81d0c
commit
2d8d03bc22
3
Makefile
3
Makefile
@ -2,8 +2,9 @@
|
|||||||
|
|
||||||
EXECUTABLE ?= drone-github-release
|
EXECUTABLE ?= drone-github-release
|
||||||
IMAGE ?= plugins/$(EXECUTABLE)
|
IMAGE ?= plugins/$(EXECUTABLE)
|
||||||
|
COMMIT ?= $(shell git rev-parse --short HEAD)
|
||||||
|
|
||||||
LDFLAGS = -X "main.buildDate=$(shell date -u '+%Y-%m-%d %H:%M:%S %Z')"
|
LDFLAGS = -X "main.buildCommit=$(COMMIT)"
|
||||||
PACKAGES = $(shell go list ./... | grep -v /vendor/)
|
PACKAGES = $(shell go list ./... | grep -v /vendor/)
|
||||||
|
|
||||||
all: deps build test
|
all: deps build test
|
||||||
|
4
main.go
4
main.go
@ -15,11 +15,11 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
buildDate string
|
buildCommit string
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
fmt.Printf("Drone GitHub Release Plugin built at %s\n", buildDate)
|
fmt.Printf("Drone GitHub Release Plugin built from %s\n", buildCommit)
|
||||||
|
|
||||||
workspace := drone.Workspace{}
|
workspace := drone.Workspace{}
|
||||||
repo := drone.Repo{}
|
repo := drone.Repo{}
|
||||||
|
Loading…
Reference in New Issue
Block a user