Skip to content

local dir

local dir #38

Workflow file for this run

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"