Skip to content

Commit

Permalink
Merge pull request #39 from loupeteam/feature/ci-fix
Browse files Browse the repository at this point in the history
Update the mechanism for installing Inno setup
  • Loading branch information
DavidWLoupe authored Jul 25, 2024
2 parents 2c596dd + 52379a4 commit 98afda6
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,10 @@ jobs:
submodules: true
token: ${{ secrets.GH_LPM_ASPYTHON_TOKEN }}

- name: Download + Install Inno
uses: pwall2222/[email protected]
- name: Download Inno Setup installer
run: Invoke-WebRequest -Uri "https://jrsoftware.org/download.php/is.exe" -OutFile "is.exe"
- name: Install Inno Setup silently
run: .\is.exe /verysilent /dir="C:\Program Files\InnoSetup"

- name: Create the EXE Installer
working-directory: ./utils
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Change log

- 1.0.5 - Update dependencies via Dependabot. Rework Github Action workflow.

- 1.0.4 - Address SyntaxWarning that pops up in Python 3.12

- 1.0.3 - Address bug related to version file path
Expand Down
2 changes: 1 addition & 1 deletion src/version.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"name": "lpm",
"version": "1.0.4"
"version": "1.0.5"
}
2 changes: 1 addition & 1 deletion utils/Setup.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "LPM"
#define MyAppVersion "1.0.4"
#define MyAppVersion "1.0.5"
#define MyAppPublisher "Loupe"
#define MyAppURL "https://loupe.team/"
#define MyAppExeName "LPM.cmd"
Expand Down

0 comments on commit 98afda6

Please sign in to comment.