local dir #38
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Ahk2Exe | |
| on: push | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Download Ahk2Exe Compiler | |
| shell: powershell | |
| run: | | |
| Invoke-WebRequest https://github.com/AutoHotkey/Ahk2Exe/releases/download/Ahk2Exe1.1.37.02a0a/Ahk2Exe1.1.37.02a0.zip -OutFile Ahk2Exe.zip | |
| 7z x Ahk2Exe.zip | |
| tree /f | |
| - name: Ahk2Exe | |
| shell: powershell | |
| run: | | |
| ./Ahk2Exe.exe /in "./MS_Paint_Hotkeys.ahk" /out "./msp_hotkeys.exe" /icon ".github\readme-images\mspaint\icon\icon16.ico" /bin "C:\Users\runneradmin\scoop\shims\Unicode 64-bit.bin" /silent verbose | |
| - name: Upload a Build Artifact | |
| uses: actions/upload-artifact@v5 | |
| with: | |
| name: build | |
| path: "*.exe" |