mirror of
https://github.com/gabehf/Fladder.git
synced 2026-03-07 13:38:13 -08:00
bug: Fix undefined Inno AppVersion (#462)
This commit is contained in:
parent
ef20087195
commit
bf18ace25a
2 changed files with 6 additions and 4 deletions
4
.github/workflows/build.yml
vendored
4
.github/workflows/build.yml
vendored
|
|
@ -211,9 +211,7 @@ jobs:
|
||||||
uses: Minionguyjpro/Inno-Setup-Action@v1.2.2
|
uses: Minionguyjpro/Inno-Setup-Action@v1.2.2
|
||||||
with:
|
with:
|
||||||
path: windows/windows_setup.iss
|
path: windows/windows_setup.iss
|
||||||
options: /O+
|
options: /O+ /DFLADDER_VERSION="${{ needs.fetch-info.outputs.version_name }}"
|
||||||
env:
|
|
||||||
FLADDER_VERSION: ${{ needs.fetch-info.outputs.version_name }}
|
|
||||||
|
|
||||||
- name: Archive Windows portable artifact
|
- name: Archive Windows portable artifact
|
||||||
uses: actions/upload-artifact@v4.0.0
|
uses: actions/upload-artifact@v4.0.0
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,13 @@
|
||||||
#define SourcePath ".."
|
#define SourcePath ".."
|
||||||
|
|
||||||
|
#ifndef FLADDER_VERSION
|
||||||
|
#define FLADDER_VERSION "latest"
|
||||||
|
#endif
|
||||||
|
|
||||||
[Setup]
|
[Setup]
|
||||||
AppId={{D573EDD5-117A-47AD-88AC-62C8EBD11DC7}
|
AppId={{D573EDD5-117A-47AD-88AC-62C8EBD11DC7}
|
||||||
AppName="Fladder"
|
AppName="Fladder"
|
||||||
AppVersion={%FLADDER_VERSION|latest}
|
AppVersion={#FLADDER_VERSION}
|
||||||
AppPublisher="DonutWare"
|
AppPublisher="DonutWare"
|
||||||
AppPublisherURL="https://github.com/DonutWare/Fladder"
|
AppPublisherURL="https://github.com/DonutWare/Fladder"
|
||||||
AppSupportURL="https://github.com/DonutWare/Fladder"
|
AppSupportURL="https://github.com/DonutWare/Fladder"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue