diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 87ecb51..8cb15c9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -360,6 +360,19 @@ jobs: - name: verify homebrew.json run: | cat homebrew.json + + - name: move homebrew.ts + run: | + mv gild-cli/homebrew.ts homebrew.ts + ls -R + + - name: run homebrew.ts & print output + run: | + bun run homebrew.ts + cat homebrew-gild/Formula/gild.rb + + - name: stop action + run: | exit 1 publish-linux-x64-to-npm: diff --git a/homebrew.ts b/homebrew.ts index e6b1412..2a0617f 100644 --- a/homebrew.ts +++ b/homebrew.ts @@ -40,7 +40,7 @@ end `; // Define the output file name -const outputFileName = 'Formula/gild.rb'; +const outputFileName = 'homebrew-gild/Formula/gild.rb'; // Write the generated content to a Ruby file fs.writeFileSync(outputFileName, rubyFileContent); \ No newline at end of file