We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8eaa86a commit 4e90883Copy full SHA for 4e90883
.github/workflows/build.yml
@@ -42,9 +42,6 @@ jobs:
42
uses: becheran/[email protected]
43
with:
44
input: "testreport.json"
45
- - name: Build release
46
- run: |
47
- make build_release
48
- name: Upload artifact
49
uses: actions/upload-artifact@v4
50
Makefile
@@ -25,7 +25,10 @@ hash_resource:
25
26
build_dev: hash_resource
27
@echo "Building..."
28
- $(GO_CMD) build -ldflags="$(GO_LDFLAGS) -X $(KVM_PKG_NAME).builtAppVersion=$(VERSION_DEV)" -o $(BIN_DIR)/jetkvm_app cmd/main.go
+ $(GO_CMD) build \
29
+ -ldflags="$(GO_LDFLAGS) -X $(KVM_PKG_NAME).builtAppVersion=$(VERSION_DEV)" \
30
+ -trimpath \
31
+ -o $(BIN_DIR)/jetkvm_app cmd/main.go
32
33
build_test2json:
34
$(GO_CMD) build -o $(BIN_DIR)/test2json cmd/test2json
0 commit comments