File tree 2 files changed +6
-2
lines changed
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -109,6 +109,10 @@ jobs:
109
109
password : ${{ secrets.QUAY_TOKEN }}
110
110
registry : quay.io
111
111
112
+ - name : Align go.mod and go.sum dependencies for released components
113
+ run : |
114
+ make modules
115
+
112
116
- name : Image Build and Push
113
117
run : |
114
118
make build
Original file line number Diff line number Diff line change @@ -158,7 +158,7 @@ modules: ## Update Go dependencies.
158
158
go mod tidy
159
159
160
160
.PHONY : build
161
- build : modules fmt vet # # Build manager binary.
161
+ build : fmt vet # # Build manager binary.
162
162
go build \
163
163
-ldflags " \
164
164
-X ' main.OperatorVersion=$(BUILD_VERSION)' \
@@ -169,7 +169,7 @@ build: modules fmt vet ## Build manager binary.
169
169
-o bin/manager main.go
170
170
171
171
.PHONY : run
172
- run : modules manifests fmt vet # # Run a controller from your host.
172
+ run : manifests fmt vet # # Run a controller from your host.
173
173
go run ./main.go
174
174
175
175
.PHONY : image-build
You can’t perform that action at this time.
0 commit comments