diff --git a/.gitea/workflows/windows.yaml b/.gitea/workflows/windows.yaml index 999ac48..cb5dcd0 100644 --- a/.gitea/workflows/windows.yaml +++ b/.gitea/workflows/windows.yaml @@ -34,4 +34,9 @@ jobs: - name: Upload to SSH using WinSCP Powershell shell: powershell run: | - .\sshupload.ps1 -LocalFilePath "dist/builds/win/x64/Rosetta-*.exe" -RemoteFolderPath ${{ secrets.SSH_TARGET_DIR }} -ServerAddress ${{ secrets.SSH_HOST }} -Username ${{ secrets.SSH_USERNAME }} -PasswordParam ${{ secrets.SSH_PASSWORD }} + & ".\sshupload.ps1" ` + -LocalFilePath "dist/builds/win/x64/Rosetta-*.exe" ` + -RemoteFolderPath "${{ secrets.SSH_TARGET_DIR }}" ` + -ServerAddress "${{ secrets.SSH_HOST }}" ` + -Username "${{ secrets.SSH_USERNAME }}" ` + -PasswordParam "${{ secrets.SSH_PASSWORD }}"