commit f0fca33d6986e6ad828aabac7c6790e038821537
parent 8659073399c79915bb927a27aa248585ad247b75
Author: Sean Enck <sean@ttypty.com>
Date: Fri, 17 Feb 2023 19:58:06 -0500
hopefully fixing all ci
Diffstat:
3 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
@@ -8,6 +8,7 @@ jobs:
container:
image: alpine:latest
steps:
+ - uses: actions/checkout@v3
- name: "deps"
run: apk add go make git
- name: "build"
diff --git a/Makefile b/Makefile
@@ -11,7 +11,7 @@ RUNS := -keyfile=true -keyfile=false
all: $(TARGET)
-build: $(TARGET) $(MAN)
+build: $(TARGET)
$(TARGET): cmd/main.go internal/**/*.go go.* internal/cli/completions*
./scripts/version cmd/vers.txt
diff --git a/scripts/ci/build.sh b/scripts/ci/build.sh