Skip to content

Commit

Permalink
update gitignore \ cleanup output
Browse files Browse the repository at this point in the history
  • Loading branch information
Inversil committed Jun 3, 2022
1 parent e26a410 commit 8468b74
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,19 @@ jobs:
uses: actions/checkout@v2
- name: Download and extract AutoHotKey
run: |
curl https://autohotkey.com/download/ahk.zip -o ahk.zip
powershell.exe -nologo -noprofile -command "& { Add-Type -A 'System.IO.Compression.FileSystem'; [IO.Compression.ZipFile]::ExtractToDirectory('ahk.zip', 'AutoHotKey'); }"
powershell.exe curl https://autohotkey.com/download/ahk.zip -o ahk.zip
powershell.exe Expand-Archive -Path ahk.zip -DestinationPath .\AutoHotKey\ -Verbose
powershell.exe ls
powershell.exe ls .\AutoHotKey
powershell.exe ls .\AutoHotKey\Compiler
- name: Run AutoHotKey compiler to generate binary
run: .\AutoHotKey\Compiler\Ahk2Exe.exe /in LiveEnhancementSuite.ahk /out "Live Enhancement Suite.exe" /icon resources\blueico.ico
- name: Install Inno Setup 6.0.4 for Installer Creation
run: |
curl http://files.jrsoftware.org/is/6/innosetup-6.0.4.exe -o innosetup-6.0.4.exe
powershell.exe ls
powershell.exe ls .\AutoHotKey
powershell.exe ls .\AutoHotKey\Compiler
powershell.exe curl http://files.jrsoftware.org/is/6/innosetup-6.0.4.exe -o innosetup-6.0.4.exe
./innosetup-6.0.4.exe /VERYSILENT /SUPPRESSMSGBOXES
- name: Run Inno Setup script and generate checksums
run: |
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
.DS_Store
resources/firstrun.txt
Live Enhancement Suite.exe
Output/
Binary file removed Live Enhancement Suite.exe
Binary file not shown.
Binary file removed Output/Live Enhancement Suite.exe
Binary file not shown.
Binary file removed Output/LiveEnhancementSuitePortable-x64.zip
Binary file not shown.
Binary file removed Output/LiveEnhancementSuiteSetup-x64.exe
Binary file not shown.
Binary file removed Output/LiveEnhancementSuiteSetup-x64.zip
Binary file not shown.

0 comments on commit 8468b74

Please sign in to comment.