Compare commits

..

4 Commits

2 changed files with 8 additions and 1 deletions

7
Jenkinsfile vendored
View File

@@ -69,6 +69,13 @@ pipeline {
string(credentialsId: 'supabase-public-anon-key', variable: 'NEXT_PUBLIC_SUPABASE_ANON_KEY') string(credentialsId: 'supabase-public-anon-key', variable: 'NEXT_PUBLIC_SUPABASE_ANON_KEY')
]) { ]) {
sh ''' sh '''
ANON_PREFIX="$(printf '%s' "$NEXT_PUBLIC_SUPABASE_ANON_KEY" | cut -c1-6)"
echo "ENV DEBUG:"
echo "NEXT_PUBLIC_SUPABASE_URL=$SUPABASE_PUBLIC_URL"
echo "NEXT_PUBLIC_APP_URL=$NEXT_PUBLIC_APP_URL"
echo "NEXT_PUBLIC_SUPABASE_ANON_KEY=${ANON_PREFIX}***"
echo "SUPABASE_URL=$SUPABASE_PUBLIC_URL"
NEXT_PUBLIC_SUPABASE_URL="$SUPABASE_PUBLIC_URL" \ NEXT_PUBLIC_SUPABASE_URL="$SUPABASE_PUBLIC_URL" \
SUPABASE_URL="$SUPABASE_PUBLIC_URL" \ SUPABASE_URL="$SUPABASE_PUBLIC_URL" \
NEXT_PUBLIC_APP_URL="$NEXT_PUBLIC_APP_URL" \ NEXT_PUBLIC_APP_URL="$NEXT_PUBLIC_APP_URL" \

View File

@@ -41,7 +41,7 @@ fix/magic-link-auth
3. Commit changes to that branch 3. Commit changes to that branch
4. Show the diff 4. Show the diff
5. Do **not merge automatically** 5. Do **not merge automatically**
6. Raise a pull request 6. Push the branch and create a pull request unless explicitly told not to.
7. User performs merge after review 7. User performs merge after review
--- ---