diff --git a/action.yml b/action.yml index 8472925..9403fe0 100644 --- a/action.yml +++ b/action.yml @@ -9,4 +9,4 @@ inputs: runs: using: 'node16' - main: 'out/github-action.cjs' + main: 'dist/github-action.cjs' diff --git a/out/github-action.cjs b/dist/github-action.cjs similarity index 99% rename from out/github-action.cjs rename to dist/github-action.cjs index 62038e6..b69d3a0 100644 --- a/out/github-action.cjs +++ b/dist/github-action.cjs @@ -27298,7 +27298,7 @@ async function improveCommitMessages(commits) { commitsToImprove.forEach((_commit, i2) => deleteCommitMessageFile(i2)); (0, import_fs2.unlinkSync)("./count.txt"); (0, import_fs2.unlinkSync)("./rebase-exec.sh"); - ce("Force pushing non-interactively rebased commits into remote origin."); + ce("Force pushing non-interactively rebased commits into remote."); await import_exec.default.exec("git", ["status"]); await import_exec.default.exec("git", ["push", `--force`]); ce("Done \u{1F9D9}"); diff --git a/esbuild.config.js b/esbuild.config.js index b32ebf7..928a9fe 100644 --- a/esbuild.config.js +++ b/esbuild.config.js @@ -14,7 +14,7 @@ await build({ bundle: true, platform: 'node', format: 'cjs', - outfile: './out/github-action.cjs' + outfile: './dist/github-action.cjs' }); const wasmFile = fs.readFileSync( diff --git a/src/github-action.ts b/src/github-action.ts index 24085cf..5eaba1f 100644 --- a/src/github-action.ts +++ b/src/github-action.ts @@ -175,7 +175,7 @@ async function improveCommitMessages( unlinkSync('./count.txt'); unlinkSync('./rebase-exec.sh'); - outro('Force pushing non-interactively rebased commits into remote origin.'); + outro('Force pushing non-interactively rebased commits into remote.'); await exec.exec('git', ['status']);