Skip to content

Commit 55e8ee4

Browse files
committed
Debug: Add verbose output to GitHub Actions
- Removed replace directive - Added debug steps to see directory structure - Added verbose build flag to see what's being compiled
1 parent 83e29ac commit 55e8ee4

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.github/workflows/release.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,13 @@ jobs:
4848
id: version
4949
run: echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
5050

51+
- name: Debug directory structure
52+
run: |
53+
pwd
54+
ls -la
55+
find . -name "*.go" | head -10
56+
cat go.mod
57+
5158
- name: Download dependencies
5259
run: go mod tidy
5360

@@ -57,7 +64,7 @@ jobs:
5764
GOARCH: ${{ matrix.goarch }}
5865
CGO_ENABLED: 0
5966
run: |
60-
go build -o goq${{ matrix.ext }} .
67+
go build -v -o goq${{ matrix.ext }} .
6168
6269
- name: Create archive
6370
run: |

go.mod

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ module goqueue
22

33
go 1.24.7
44

5-
replace goqueue => ./
6-
75
require (
86
github.com/aquasecurity/table v1.11.0
97
github.com/spf13/cobra v1.10.1

0 commit comments

Comments
 (0)