Skip to content

Commit

Permalink
reintegrated build for github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
andreburgaud committed Jun 23, 2023
1 parent 7bed806 commit 6a4df8b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
VERSION := "0.8.2"
APP := "showcert"
DOCKER_IMAGE := "andreburgaud" / APP
BUILD_DIR := "build"
DEBUG_DIR := BUILD_DIR / "debug"

#alias b := build
alias c := clean
Expand Down Expand Up @@ -33,6 +35,10 @@ create_certs:
test:
go test -v ./...

# Build showcert debug version (needed for GitHub Actions)
build:
go build -o {{DEBUG_DIR}}/{{APP}} {{APP}}/cmd/{{APP}}

# Check release configuration
check-release:
goreleaser check
Expand Down

0 comments on commit 6a4df8b

Please sign in to comment.