File tree Expand file tree Collapse file tree 4 files changed +7
-3
lines changed
actions/push-registry-app-files-supabase Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 77 supabase_anon_key :
88 description : " Supabase anon key"
99 required : true
10+ supabase_uri :
11+ description : " Supabase URI"
12+ required : true
1013runs :
11- using : " node16 "
14+ using : " node22 "
1215 main : " dist/index.js"
Original file line number Diff line number Diff line change @@ -44818,7 +44818,7 @@ const { execSync } = __nccwpck_require__(2081);
4481844818
4481944819
4482044820
44821- const supabaseUrl = "https://ywxbxfcsskoyjwnlpqms.supabase.co"
44821+ const supabaseUrl = core.getInput("supabase_uri");
4482244822const supabaseKey = core.getInput("supabase_anon_key");
4482344823const changedFiles = JSON.parse(core.getInput("changed_files") || "[]");
4482444824
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ const { execSync } = require("child_process");
44
55import { createClient } from "@supabase/supabase-js" ;
66
7- const supabaseUrl = "https://ywxbxfcsskoyjwnlpqms.supabase.co"
7+ const supabaseUrl = core . getInput ( "supabase_uri" ) ;
88const supabaseKey = core . getInput ( "supabase_anon_key" ) ;
99const changedFiles = JSON . parse ( core . getInput ( "changed_files" ) || "[]" ) ;
1010
Original file line number Diff line number Diff line change 5252 with :
5353 changed_files : ${{ steps.changed_files.outputs.all }}
5454 supabase_anon_key : ${{ secrets.SUPABASE_ANON_KEY }}
55+ supabase_uri : ${{ secrets.SUPABASE_URI }}
You can’t perform that action at this time.
0 commit comments