diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index 9fac84a..e6eaf64 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -84,11 +84,9 @@ jobs: if: runner.os == 'Windows' shell: pwsh run: | - $json = @" -{ - "version": "$env:VERSION" -} -"@ + $json = '{ + "version": "' + $env:VERSION + '" + }' $json | Out-File -Encoding utf8 build_info.json - name: Build executable with PyInstaller (Windows)