Skip to content

Commit

Permalink
Minor fix for powershell var
Browse files Browse the repository at this point in the history
  • Loading branch information
remyroy committed Apr 30, 2024
1 parent aecc6c7 commit fb22ee8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,10 @@ jobs:
- name: Build with build.spec (Windows amd64)
if: ${{ startsWith(matrix.os, 'windows-') }}
run: |
$env:BUILD_FILE_NAME = "staking_deposit-cli-" + $env:SHORT_SHA + "-windows-amd64"
$env:BUILD_FILE_NAME = ("staking_deposit-cli-" + $env:SHORT_SHA + "-windows-amd64")
echo ("BUILD_FILE_NAME=" + $env:BUILD_FILE_NAME) | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
mkdir $env:BUILD_FILE_NAME
$env:BUILD_FILE_NAME_PATH = (".\" + $BUILD_FILE_NAME)
$env:BUILD_FILE_NAME_PATH = (".\" + $env:BUILD_FILE_NAME)
echo ("BUILD_FILE_NAME_PATH=" + $env:BUILD_FILE_NAME_PATH) | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
pyinstaller --distpath $env:BUILD_FILE_NAME .\build_configs\windows\build.spec
- name: Install coreutils (macOS)
Expand Down

0 comments on commit fb22ee8

Please sign in to comment.