ci: fix retroarch copy path and switch to ppsspp-dev with games bucket #1421
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: 'Build' | |
| on: | |
| push: | |
| branches: [master, dev, test] | |
| workflow_dispatch: | |
| # schedule: | |
| # - cron: "0 0 */2 * *" | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install VCRedist | |
| run: choco install vcredist2010 -y | |
| - name: Powershell script runner | |
| run: | | |
| Set-ExecutionPolicy Bypass -Scope Process -Force | |
| [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 | |
| .\prepare.ps1 |