Skip to content

Commit

Permalink
feature: add build and release workflow for automated binary compilat…
Browse files Browse the repository at this point in the history
…ion and github releases
  • Loading branch information
isakruas committed Oct 26, 2024
1 parent 5fdf644 commit 4df9331
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ GO_FILES := $(shell find . -name '*.go' | grep -v /vendor/ | grep -v _test.go)
GOARCH := $(shell go env GOARCH)
GOOS := $(shell go env GOOS)
BUILDDATE := $(shell date -u +'%Y-%m-%dT%H:%M:%SZ')
CODEVERSION := "1.1.2"
CODEVERSION := "1.1.3"
CODEBUILDREVISION := $(shell git rev-parse HEAD)
.PHONY: all dep build clean test coverage zip lint

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
**ecutils**

## Version of the *Software*
**1.1.2**
**1.1.3**

## *Software* Description

Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ PKG="$PROJECT_NAME"
PKG_LIST=$(go list "${PKG}/..." | grep -v /vendor/)
GO_FILES=$(find . -name '*.go' | grep -v /vendor/ | grep -v _test.go)
BUILDDATE=$(date -u +'%Y-%m-%dT%H:%M:%SZ')
CODEVERSION="1.1.2"
CODEVERSION="1.1.3"
CODEBUILDREVISION=$(git rev-parse HEAD)
TARGETS=(
"linux/386"
Expand Down

0 comments on commit 4df9331

Please sign in to comment.