File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ mkdir -p "$IMAGES_DIR"
1212
1313# Build the basic-docker binary with error handling
1414echo " ==== 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
1818fi
You can’t perform that action at this time.
0 commit comments