We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f6ce70 commit 70bdc73Copy full SHA for 70bdc73
1 file changed
.github/workflows/build.yml
@@ -14,11 +14,15 @@ jobs:
14
steps:
15
- uses: actions/checkout@v6
16
17
- - name: Install AutoHotkey
18
- run: |
19
- choco install autohotkey --version=2.0.19 -y
20
- choco install ahk2exe -y
21
- shell: pwsh
+ - name: Install AutoHotkey
+ shell: pwsh
+ run: |
+ choco install autohotkey --version=2.0.19 -y
+ $dest = "$env:ProgramFiles\AutoHotkey\Compiler"
22
+ New-Item -Type Directory -Force $dest | Out-Null
23
+ Invoke-WebRequest -Uri "https://github.com/AutoHotkey/Ahk2Exe/releases/latest/download/Ahk2Exe.zip" -OutFile "$env:TEMP\Ahk2Exe.zip"
24
+ Expand-Archive "$env:TEMP\Ahk2Exe.zip" -DestinationPath $dest -Force
25
+
26
- name: Verify Installation
27
run: |
28
$compiler = "$env:ProgramFiles\AutoHotkey\Compiler\Ahk2Exe.exe"
0 commit comments