Skip to content

Commit 4932952

Browse files
committed
include kubernetes.go in the go build
1 parent 88a35fa commit 4932952

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
- name: Build project with error handling
4343
run: |
4444
echo "==== Building Project ===="
45-
if ! go build -o basic-docker main.go network.go image.go; then
45+
if ! go build -o basic-docker main.go network.go image.go kubernetes.go; then
4646
echo "Error: Build failed. Please check the errors above." >&2
4747
exit 1
4848
fi

verify.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ mkdir -p "$IMAGES_DIR"
1212

1313
# Build the basic-docker binary with error handling
1414
echo "==== Building Project ===="
15-
if ! go build -o basic-docker main.go network.go image.go; then
15+
if ! go build -o basic-docker main.go network.go image.go kubernetes.go; then
1616
echo "Error: Build failed. Please check the errors above." >&2
1717
exit 1
1818
fi

0 commit comments

Comments
 (0)