Skip to content

Commit

Permalink
Update index.js
Browse files Browse the repository at this point in the history
  • Loading branch information
bzwrk committed Feb 13, 2025
1 parent 81b433e commit 9def150
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
10 changes: 7 additions & 3 deletions .github/actions/push-registry-app-files-supabase/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -44899,9 +44899,13 @@ async function uploadToSupabase(payload) {
async function run() {
const filesToUpsert = changedFiles.filter(shouldInclude)
console.log("Working directory: ")
execSync("pwd")
console.log("ls")
execSync("ls")
const pwdOutput = execSync("pwd").toString().trim();
console.log(pwdOutput);

console.log("Listing files:");
const lsOutput = execSync("ls -al").toString().trim();
console.log(lsOutput);

console.log("Files to upsert: ", filesToUpsert)

const appMjsFiles = filesToUpsert.filter(file => file.endsWith('.app.mjs'))
Expand Down
10 changes: 7 additions & 3 deletions .github/actions/push-registry-app-files-supabase/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,13 @@ async function uploadToSupabase(payload) {
async function run() {
const filesToUpsert = changedFiles.filter(shouldInclude)
console.log("Working directory: ")
execSync("pwd")
console.log("ls")
execSync("ls")
const pwdOutput = execSync("pwd").toString().trim();
console.log(pwdOutput);

console.log("Listing files:");
const lsOutput = execSync("ls -al").toString().trim();
console.log(lsOutput);

console.log("Files to upsert: ", filesToUpsert)

const appMjsFiles = filesToUpsert.filter(file => file.endsWith('.app.mjs'))
Expand Down

0 comments on commit 9def150

Please sign in to comment.