Skip to content

Commit ae03638

Browse files
authored
Download AHK and add as base
1 parent 7901880 commit ae03638

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/ahk2exe.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,13 @@ jobs:
99
steps:
1010
- name: Checkout
1111
uses: actions/checkout@v5
12-
12+
13+
- name: Download AutoHotKey
14+
shell: powershell
15+
run: |
16+
Invoke-WebRequest https://github.com/AutoHotkey/AutoHotkey/releases/download/v2.0.19/AutoHotkey_2.0.19.zip -OutFile AutoHotkey.zip
17+
7z x AutoHotkey.zip
18+
1319
- name: Download Ahk2Exe Compiler
1420
shell: powershell
1521
run: |
@@ -19,7 +25,7 @@ jobs:
1925
- name: Ahk2Exe
2026
shell: powershell
2127
run: |
22-
./Ahk2Exe.exe /in "./MS Paint Hotkeys.ahk" /out "./msp_hotkeys.exe" /icon ".github\readme-images\mspaint\icon\icon16.ico" /silent verbose
28+
./Ahk2Exe.exe /in "./MS Paint Hotkeys.ahk" /out "./msp_hotkeys.exe" /icon ".github\readme-images\mspaint\icon\icon16.ico" /base "./AutoHotkey64.exe" /silent verbose
2329
2430
- name: Upload a Build Artifact
2531
uses: actions/upload-artifact@v5

0 commit comments

Comments
 (0)