Skip to content

Commit c95f5a5

Browse files
authored
Update action.yaml
1 parent 8c7975b commit c95f5a5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ runs:
2525
Invoke-WebRequest "https://www.autohotkey.com/download/ahk.zip" -OutFile "$cwd\autohotkey.zip";
2626
Expand-Archive -Path "$cwd\autohotkey.zip" -DestinationPath "$cwd\_autohotkey\" -Force;
2727
Remove-Item -Path "$cwd\autohotkey.zip" -Force
28-
$Env:GITHUB_ENV = Write-Output ("$cwd\_autohotkey\;" + "$cwd\_autohotkey\Compiler");
28+
Write-Output ("$cwd\_autohotkey\;" + "$cwd\_autohotkey\Compiler") | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
2929
3030
- name: Run Ahk2Exe
3131
shell: pwsh
@@ -40,7 +40,7 @@ runs:
4040
if('${{inputs.icon}}' -ne ''){
4141
$params += '/icon "${{inputs.icon}}" '
4242
}
43-
.\_autohotkey\Compiler\ahk2exe.exe /silent $params | Write-Output
43+
ahk2exe.exe /silent $params | Write-Output
4444
4545
branding:
4646
color: green

0 commit comments

Comments
 (0)