Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
3fefcfcb40 | |||
e6f9848000
|
|||
7892a1fa7c
|
@@ -2,6 +2,12 @@
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
## [2.0.9](https://git.0xmax42.io/actions/auto-changelog-release-action/compare/v2.0.8..v2.0.9) - 2025-07-04
|
||||
|
||||
### 🚀 Features
|
||||
|
||||
- *(exec)* Add support for custom working directories - ([7892a1f](https://git.0xmax42.io/actions/auto-changelog-release-action/commit/7892a1fa7c2451ea947c11f0cf71ba189306d708))
|
||||
|
||||
## [2.0.8](https://git.0xmax42.io/actions/auto-changelog-release-action/compare/v2.0.7..v2.0.8) - 2025-07-04
|
||||
|
||||
### 🚀 Features
|
||||
|
6
dist/main.js
vendored
6
dist/main.js
vendored
@@ -3,7 +3,11 @@ const path = require("path");
|
||||
const fs = require("fs");
|
||||
|
||||
function run(script) {
|
||||
cp.execFileSync(script, { stdio: "inherit", shell: true });
|
||||
cp.execFileSync(script, {
|
||||
stdio: "inherit",
|
||||
shell: true,
|
||||
cwd: process.env.GITHUB_WORKSPACE || process.cwd()
|
||||
});
|
||||
}
|
||||
|
||||
function exportOutput(key, value) {
|
||||
|
1
dist/post.js
vendored
1
dist/post.js
vendored
@@ -7,6 +7,7 @@ function run(script, args = []) {
|
||||
stdio: "inherit",
|
||||
shell: true,
|
||||
env: process.env,
|
||||
cwd: process.env.GITHUB_WORKSPACE || process.cwd(),
|
||||
});
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user