Skip to content

Fix MCAD version in Makefile #439

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/tag-and-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,10 @@ jobs:
password: ${{ secrets.QUAY_TOKEN }}
registry: quay.io

- name: Align go.mod and go.sum dependencies for released components
run: |
make modules

- name: Image Build and Push
run: |
make build
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ modules: ## Update Go dependencies.
go mod tidy

.PHONY: build
build: modules fmt vet ## Build manager binary.
build: fmt vet ## Build manager binary.
go build \
-ldflags " \
-X 'main.OperatorVersion=$(BUILD_VERSION)' \
Expand All @@ -169,7 +169,7 @@ build: modules fmt vet ## Build manager binary.
-o bin/manager main.go

.PHONY: run
run: modules manifests fmt vet ## Run a controller from your host.
run: manifests fmt vet ## Run a controller from your host.
go run ./main.go

.PHONY: image-build
Expand Down