Skip to content

Commit

Permalink
chore(make): update tag and move build targets
Browse files Browse the repository at this point in the history
By moving the `build` target to the first one, it'll be run as the
default target calling `make`.
  • Loading branch information
Duologic committed Dec 20, 2024
1 parent 493b1f1 commit 59744d9
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
LIBRARY_VERSION:=0.1.0
LIBRARY_VERSION:=0.2.0
PROVIDER_VERSION:=0.22.0
JSONNET_BIN:=jrsonnet
CROSSPLANE?=crossplane
Expand All @@ -7,6 +7,12 @@ SHELL:=/bin/bash

VENDOR_DEPTHS:=$(shell find generator/vendor -type f)

.PHONY: build
build: grafanaplane/raw.libsonnet grafanaplane/configurations.libsonnet packages

.PHONY: push
push: push_packages

grafanaplane: grafanaplane/raw.libsonnet grafanaplane/configurations.libsonnet

generator/crds.yaml:
Expand Down Expand Up @@ -49,9 +55,3 @@ docs: $(shell find grafanaplane/ -type f)
.PHONY: tag
tag:
git tag $(LIBRARY_VERSION)-$(PROVIDER_VERSION)

.PHONY: build
build: grafanaplane/raw.libsonnet grafanaplane/configurations.libsonnet packages

.PHONY: push
push: push_packages

0 comments on commit 59744d9

Please sign in to comment.