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 }}