Skip to content

Commit

Permalink
ci: fix release version name (supabase#1434)
Browse files Browse the repository at this point in the history
  • Loading branch information
kangmingtay authored Feb 17, 2024
1 parent 7f40047 commit 3e57b61
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ 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 3e57b61

Please sign in to comment.