We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 335826d commit 4aabb59Copy full SHA for 4aabb59
.github/workflows/test.yaml
@@ -3,7 +3,7 @@ on:
3
push:
4
5
jobs:
6
- test-and-build:
+ build:
7
uses: riotkit-org/.github/.github/workflows/go-kubernetes.release.yaml@main
8
with:
9
binaryName: git-clone-controller
Dockerfile
@@ -1,6 +1,6 @@
1
FROM alpine:3.14 AS build
2
-ADD .build/git-clone-operator /git-clone-operator
+ADD .build/git-clone-controller /git-clone-operator
RUN chmod +x /git-clone-operator
# ---
Makefile
@@ -10,7 +10,7 @@ test:
10
build:
11
@echo "\n🔧 Building Go binaries..."
12
mkdir -p .build
13
- CGO_ENABLED=0 GO111MODULE=on GOOS=linux GOARCH=amd64 go build -o .build/git-clone-operator .
+ CGO_ENABLED=0 GO111MODULE=on GOOS=linux GOARCH=amd64 go build -o .build/git-clone-controller .
14
15
.PHONY: coverage
16
coverage:
0 commit comments