3 Commits
v2.0.8 ... v2

Author SHA1 Message Date
3fefcfcb40 chore(changelog): update changelog for v2.0.9
All checks were successful
Create Major Version Tag / update-major-tag (release) Successful in 5s
2025-07-04 09:59:55 +00:00
e6f9848000 chore(version): bump to 2.0.9
All checks were successful
Auto Changelog & Release / release (push) Successful in 8s
2025-07-04 11:59:47 +02:00
7892a1fa7c feat(exec): add support for custom working directories
- Updates script execution to use `cwd` based on environment variables
- Enables better compatibility with GitHub Actions workflows
2025-07-04 11:59:47 +02:00
4 changed files with 13 additions and 2 deletions

View File

@@ -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

View File

@@ -1 +1 @@
2.0.8
2.0.9

6
dist/main.js vendored
View File

@@ -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
View File

@@ -7,6 +7,7 @@ function run(script, args = []) {
stdio: "inherit",
shell: true,
env: process.env,
cwd: process.env.GITHUB_WORKSPACE || process.cwd(),
});
}