mirror of
https://github.com/GoTestTools/gotestfmt-action.git
synced 2026-02-18 21:51:47 +00:00
Explicitly echo bin path into GITHUB_PATH
Signed-off-by: Yuri Norwood <106889957+norwd@users.noreply.github.com>
This commit is contained in:
parent
c5d78e059f
commit
939c90d635
1 changed files with 1 additions and 1 deletions
2
index.js
2
index.js
|
|
@ -19,7 +19,7 @@ async function downloadRelease(octokit, os, org, repo, release, token) {
|
||||||
|
|
||||||
// Make sure that the install directory is on the PATH
|
// Make sure that the install directory is on the PATH
|
||||||
if (os === "windows") {
|
if (os === "windows") {
|
||||||
execSync(`"${binpath}" >> $env:GITHUB_PATH`);
|
execSync(`echo "${binpath}" >> $env:GITHUB_PATH`);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Search through the latest release assets for an install canidate
|
// Search through the latest release assets for an install canidate
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue