Skip to content

Commit

Permalink
Update release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Ragnar-F committed Jun 6, 2021
1 parent 9d6ee90 commit ccd706a
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/release.yml
Expand Up @@ -23,13 +23,16 @@ jobs:
with:
ref: master

- name: Install AutoHotkey v2 32-bit
- name: Download and unzip AutoHotkey v2
run: |
choco install autohotkey.portable --pre --x86
$source = "https://www.autohotkey.com/download/ahk-v2.zip"
$dest = "ahk-v2.zip"
Invoke-WebRequest -Uri $source -OutFile $dest
Expand-Archive -Path $dest
- name: Run build_search.ahk
run: |
Start-Process -FilePath "AutoHotkey.exe" -ArgumentList "/ErrorStdOut `"static/source/build_search.ahk`"" -NoNewWindow -Wait
Start-Process -FilePath "ahk-v2/AutoHotkey32.exe" -ArgumentList "/ErrorStdOut `"static/source/build_search.ahk`"" -NoNewWindow -Wait
- name: Commit
run: |
Expand Down

0 comments on commit ccd706a

Please sign in to comment.