Skip to content

Commit

Permalink
ci: fix release version name
Browse files Browse the repository at this point in the history
  • Loading branch information
kangmingtay committed Feb 16, 2024
1 parent 7f40047 commit cc9cee8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v4

- id: meta
uses: docker/metadata-action@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ CHECK_FILES?=./...

FLAGS=-ldflags "-X github.com/supabase/auth/internal/utilities.Version=`git describe --tags`" -buildvcs=false
ifdef RELEASE_VERSION
FLAGS=-ldflags "-X github.com/supabase/auth/internal/utilities.Version=$(RELEASE_VERSION)" -buildvcs=false
FLAGS=-ldflags "-X github.com/supabase/auth/internal/utilities.Version=v$(RELEASE_VERSION)" -buildvcs=false
endif

DEV_DOCKER_COMPOSE:=docker-compose-dev.yml
Expand Down

0 comments on commit cc9cee8

Please sign in to comment.