From e854ee420fc4400fbd931c573b6b3f8da1fcc4a8 Mon Sep 17 00:00:00 2001 From: Oliver Nordbjerg Date: Fri, 11 Oct 2024 03:35:45 +0200 Subject: [PATCH] fix: set `GIT_TAG` in Makefile --- Makefile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Makefile b/Makefile index b8bb08a..796e9b1 100644 --- a/Makefile +++ b/Makefile @@ -3,9 +3,7 @@ # and Reth: https://github.com/paradigmxyz/reth/blob/2e87b2a8d57813ce61f8898cf89d7b0dda2ab27d/Makefile .DEFAULT_GOAL := help -# TODO: replace when we have a tag -# GIT_TAG ?= $(shell git describe --tags --abbrev=0) -GIT_TAG ?= latest +GIT_TAG ?= $(shell git describe --tags --abbrev=0) BIN_DIR = "dist/bin" # Cargo profile for builds. Default is for local builds, CI uses an override.