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 83e29ac commit 55e8ee4Copy full SHA for 55e8ee4
.github/workflows/release.yml
@@ -48,6 +48,13 @@ jobs:
48
id: version
49
run: echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
50
51
+ - name: Debug directory structure
52
+ run: |
53
+ pwd
54
+ ls -la
55
+ find . -name "*.go" | head -10
56
+ cat go.mod
57
+
58
- name: Download dependencies
59
run: go mod tidy
60
@@ -57,7 +64,7 @@ jobs:
64
GOARCH: ${{ matrix.goarch }}
65
CGO_ENABLED: 0
66
run: |
- go build -o goq${{ matrix.ext }} .
67
+ go build -v -o goq${{ matrix.ext }} .
61
68
62
69
- name: Create archive
63
70
go.mod
@@ -2,8 +2,6 @@ module goqueue
2
3
go 1.24.7
4
5
-replace goqueue => ./
6
-
7
require (
8
github.com/aquasecurity/table v1.11.0
9
github.com/spf13/cobra v1.10.1
0 commit comments