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 3a16f8f commit d099deeCopy full SHA for d099dee
.github/workflows/test.yml
@@ -44,7 +44,7 @@ jobs:
44
- name: Build project with error handling
45
run: |
46
echo "==== Building Project ===="
47
- if ! go build -o basic-docker main.go network.go image.go kubernetes.go; then
+ if ! go build -o basic-docker .; then
48
echo "Error: Build failed. Please check the errors above." >&2
49
exit 1
50
fi
verify.sh
@@ -12,7 +12,7 @@ mkdir -p "$IMAGES_DIR"
12
13
# Build the basic-docker binary with error handling
14
15
-if ! go build -o basic-docker main.go network.go image.go kubernetes.go; then
+if ! go build -o basic-docker .; then
16
17
18
0 commit comments