Skip to content

Commit 8a09004

Browse files
committed
Fix MCAD version in Makefile
1 parent 86ca67c commit 8a09004

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/tag-and-build.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)