Skip to content

fix: project compiler #34

fix: project compiler

fix: project compiler #34

Workflow file for this run

name: Build on Windows
on: push
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Checkout ahk-libs
run: git clone https://github.com/thegamerx1/ahk-libs Lib
- name: Trust me I hate this
run: |-
New-Item -Path "$HOME\Documents\Autohotkey" -ItemType Directory -Force
New-Item -ItemType Junction -Path "$HOME\Documents\Autohotkey\Lib" -Target "$(pwd)\Lib"
- run: choco install autohotkey
- name: Compile HTML
run: >
& "C:\Program Files\AutoHotkey\AutohotkeyU64.exe" "/ErrorStdOut" "Lib\EzGui\projectCompile.ahk" -web "web" -includer "extensions" 2>&1 | Out-Host
- name: Compile AHK
run: >
& "C:\Program Files\AutoHotkey\Compiler\Ahk2Exe.exe" "/ErrorStdOut" "/in" "main.ahk" 2>&1 | Out-Host
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: StartUp.exe
path: StartUp.exe
if-no-files-found: error
- name: Release
if: startsWith(github.ref, 'refs/tags/')
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: softprops/action-gh-release@v1
with:
files: StartUp.exe