File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -109,6 +109,10 @@ jobs:
109109 password : ${{ secrets.QUAY_TOKEN }}
110110 registry : quay.io
111111
112+ - name : Align go.mod and go.sum dependencies for released components
113+ run : |
114+ make modules
115+
112116 - name : Image Build and Push
113117 run : |
114118 make build
Original file line number Diff line number Diff line change @@ -158,7 +158,7 @@ modules: ## Update Go dependencies.
158158 go mod tidy
159159
160160.PHONY : build
161- build : modules fmt vet # # Build manager binary.
161+ build : fmt vet # # Build manager binary.
162162 go build \
163163 -ldflags " \
164164 -X ' main.OperatorVersion=$(BUILD_VERSION)' \
@@ -169,7 +169,7 @@ build: modules fmt vet ## Build manager binary.
169169 -o bin/manager main.go
170170
171171.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.
173173 go run ./main.go
174174
175175.PHONY : image-build
You can’t perform that action at this time.
0 commit comments