Skip to content

Commit

Permalink
More path tweaks.
Browse files Browse the repository at this point in the history
  • Loading branch information
fnando committed Nov 14, 2024
1 parent 29961eb commit a7effab
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ jobs:
run: |
$Env:Path += ";C:\Users\$Env:UserName\AppData\Local\Programs\Inno Setup 6"
$Env:STELLAR_CLI_VERSION = "${{ env.VERSION }}"
ISCC.exe installer.iss /F${{ env.STELLAR_CLI_INSTALLER_BASENAME }}
ISCC.exe installer.iss
- name: Build provenance for attestation (release only)
if: github.event_name == 'release'
Expand All @@ -143,7 +143,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: ${{ env.STELLAR_CLI_INSTALLER }}
path: ${{ env.STELLAR_CLI_INSTALLER }}
path: Output/stellar-installer.exe

- name: Upload to Release (release only)
if: github.event_name == 'release'
Expand All @@ -156,6 +156,6 @@ jobs:
repo: context.repo.repo,
release_id: ${{ github.event.release.id }},
name: '${{ env.STELLAR_CLI_INSTALLER }}',
data: fs.readFileSync('${{ env.STELLAR_CLI_INSTALLER }}'),
data: fs.readFileSync('Output/stellar-installer.exe'),
});
2 changes: 1 addition & 1 deletion installer.iss
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ ChangesEnvironment=yes
[Files]
Source: "stellar.exe"; DestDir: "{app}"
Source: "stellar.ico"; DestDir: "{app}"
Source: "License.txt"; DestDir: "{app}"; Flags: ignoreversion
Source: "LICENSE"; DestDir: "{app}"; Flags: ignoreversion

[Icons]
; Windows optimizes start menu, and removes the uninstall entry. Unless we
Expand Down

0 comments on commit a7effab

Please sign in to comment.