From 2890d6ac403efe9e42876ca254a624f3b4850e72 Mon Sep 17 00:00:00 2001 From: charlesgauthereau Date: Thu, 17 Jul 2025 12:43:00 +0200 Subject: [PATCH] Ready for release soon. --- .github/workflows/release.yml | 16 +++++++++++++--- src/lib/auth/auth.ts | 1 + 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 61216447..e5f65a1b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -39,7 +39,6 @@ jobs: fi echo "tags=$TAGS" >> $GITHUB_OUTPUT - - name: Build and push Docker image id: push uses: docker/build-push-action@v6 @@ -47,10 +46,21 @@ jobs: context: . file: ./docker/dockerfile/Dockerfile push: true - tags: ${{ steps.meta.outputs.tags }} - labels: ${{ steps.meta.outputs.labels }} + tags: ${{ steps.set-tags.outputs.tags }} target: prod +# Do not delete +# - name: Build and push Docker image +# id: push +# uses: docker/build-push-action@v6 +# with: +# context: . +# file: ./docker/dockerfile/Dockerfile +# push: true +# tags: ${{ steps.meta.outputs.tags }} +# labels: ${{ steps.meta.outputs.labels }} +# target: prod + # - name: Generate artifact attestation # uses: actions/attest-build-provenance@v2 # with: diff --git a/src/lib/auth/auth.ts b/src/lib/auth/auth.ts index 9a46086c..33d0bd96 100644 --- a/src/lib/auth/auth.ts +++ b/src/lib/auth/auth.ts @@ -14,6 +14,7 @@ export const auth = betterAuth({ provider: "pg", schema: drizzleDb.schemas, }), + secret: env.PROJECT_SECRET, emailAndPassword: { enabled: true, requireEmailVerification: false,