Skip to content

Commit

Permalink
fix: use github asset url instead of autohotkey site. (#273)
Browse files Browse the repository at this point in the history
Autohotkey's main webpage is fronted with Cloudflare; the download to
their installer zip is failing in ci.
  • Loading branch information
jmctune authored Nov 15, 2024
1 parent be34ead commit 2a52e34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/_compile_launcher.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run: |
cd app\launcher;
Invoke-WebRequest "https://github.com/AutoHotkey/Ahk2Exe/releases/download/Ahk2Exe1.1.37.01c1/Ahk2Exe1.1.37.01c1.zip" -OutFile "$cwd\ahk2exe.zip";
Invoke-WebRequest "https://www.autohotkey.com/download/ahk-v2.zip" -OutFile "$cwd\ahk.zip";
Invoke-WebRequest "https://github.com/AutoHotkey/AutoHotkey/releases/download/v2.0.18/AutoHotkey_2.0.18.zip" -OutFile "$cwd\ahk.zip";
Expand-Archive -Path "$cwd\ahk2exe.zip" -DestinationPath . -Force;
Expand-Archive -Path "$cwd\ahk.zip" -DestinationPath . -Force;
& .\Ahk2Exe.exe /in "dqxclarity.ahk" /base "AutoHotkey64.exe" /icon "img/rosie.ico";
Expand Down

0 comments on commit 2a52e34

Please sign in to comment.