From 91fe4e9032f80101ff02fa053ff556e473b8ef8c Mon Sep 17 00:00:00 2001 From: masesdevelopers <94312179+masesdevelopers@users.noreply.github.com> Date: Tue, 18 Aug 2026 17:28:10 +0200 Subject: [PATCH] Fix #1185 --- .github/workflows/performance.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/performance.yaml b/.github/workflows/performance.yaml index 0502b62d8d..4260899fed 100644 --- a/.github/workflows/performance.yaml +++ b/.github/workflows/performance.yaml @@ -48,11 +48,11 @@ jobs: run: | curl -L -o "%RUNNER_TEMP%\pscp.exe" https://the.earth.li/~sgtatham/putty/latest/w64/pscp.exe - - name: Download source.zip via SFTP + - name: Download ${{ inputs.SpecialSettingsSource }} via SFTP if: ${{ inputs.UseSpecialSettings == true }} shell: cmd run: | - %RUNNER_TEMP%\pscp.exe -hostkey "${{ secrets.SFTP_HOST_KEY }}" -pw ${{ secrets.SFTP_PASSWORD }} -batch ${{ secrets.SFTP_USERNAME }}@${{ secrets.SFTP_SERVER }}:/source-files/source.zip "${{ github.workspace }}\source.zip" + %RUNNER_TEMP%\pscp.exe -hostkey "${{ secrets.SFTP_HOST_KEY }}" -pw ${{ secrets.SFTP_PASSWORD }} -batch ${{ secrets.SFTP_USERNAME }}@${{ secrets.SFTP_SERVER }}:/source-files/${{ inputs.SpecialSettingsSource }} "${{ github.workspace }}\${{ inputs.SpecialSettingsSource }}" - name: Prepare other files if: ${{ inputs.UseSpecialSettings == true }}