Skip to content

Commit 259f866

Browse files
Merge pull request #93 from puzzlers-tech/main
Bugfix file path
2 parents f11d1f2 + 25e0d48 commit 259f866

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ async function run() {
9191
// Use environment file to set output (GitHub Actions best practice)
9292
const outputEnv = process.env.GITHUB_OUTPUT;
9393
if (outputEnv) {
94-
fs.appendFileSync(outputEnv, `package-artifact-path=${destPath}\n`);
94+
fs.appendFileSync(outputEnv, `package-artifact-path=${actionDirectory}/${fileName}\n`);
9595
}
9696
console.log(`Package artifact saved at: ${destPath}`);
9797
}

0 commit comments

Comments
 (0)