Fixed Windows-based newline issue on platforms

This commit is contained in:
Thorsten Sommer 2024-06-16 15:27:32 +02:00
parent 58534da03f
commit 135e07fdf4
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -61,7 +61,7 @@ jobs:
- name: Store update platform to .updates directory (Windows) - name: Store update platform to .updates directory (Windows)
if: matrix.platform == 'windows-latest' if: matrix.platform == 'windows-latest'
run: Write-Output "${{ matrix.update_platform }}" | Out-File -FilePath ".updates/platform" -Encoding utf8 run: Write-Output "${{ matrix.update_platform }}" | Out-File -FilePath ".updates/platform" -Encoding utf8 -NoNewline
- name: Setup .NET - name: Setup .NET
uses: actions/setup-dotnet@v4 uses: actions/setup-dotnet@v4