From 3cee48af3baa5ab38f300242e7b1c1612a8c1915 Mon Sep 17 00:00:00 2001 From: Moshe Kabala Date: Mon, 21 Oct 2024 22:42:00 +0300 Subject: [PATCH] Fix windows installer workflow-2 --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bcf4019f..06ca8a4b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -64,7 +64,7 @@ jobs: - name: Replace version in Inno Setup script run: | - (Get-Content windows-installer.iss.template) -replace '{#AppVersion}', '${{ github.env.VERSION }}' | Set-Content windows-installer.iss + (Get-Content windows-installer.iss.template) -replace '{#AppVersion}', '${{ env.VERSION }}' | Set-Content windows-installer.iss shell: pwsh - name: Compile the installer using Inno Setup @@ -75,6 +75,6 @@ jobs: if: startsWith(github.ref, 'refs/tags/') uses: softprops/action-gh-release@v1 with: - files: ./LeapCLIInstaller_${{ github.env.VERSION }}_windows_amd64.exe + files: ./LeapCLIInstaller_${{ env.VERSION }}_windows_amd64.exe env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}