Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
hansbonini committed Jul 4, 2024
1 parent b9a0a6b commit 7bf0aee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,17 @@ jobs:
make WORKSPACE="$GHWORKSPACE" NAME="Altered Beast" VERSION="US" ASM68K_SWITCHES="//m //p //k" build
- name: Run Blastem and record movie
run: |
${{github.workspace}}\tools\RetroArch-Win64\retroarch.exe --libretro=blastem_libretro.dll.dll "${{github.workspace}}\build\Altered Beast (US).bin" --record="${{github.workspace}}\screenshots\blastem.png" --appendconfig="${{github.workspace}}\retroarch.cfg" --verbose
${{github.workspace}}\tools\RetroArch-Win64\retroarch.exe -L "${{github.workspace}}\blastem_libretro.dll" "${{github.workspace}}\build\Altered Beast (US).bin" --record="${{github.workspace}}\screenshots\blastem.png" --appendconfig="${{github.workspace}}\retroarch.cfg" --verbose
Start-Sleep -Seconds 20
Stop-Process $(Get-Process retroarch | select -expand id)
- name: Run Genesis Plus GX and record movie
run: |
${{github.workspace}}\tools\RetroArch-Win64\retroarch.exe --libretro=genesis_plus_gx_libretro.dll "${{github.workspace}}\build\Altered Beast (US).bin" --record="${{github.workspace}}\screenshots\gensplusgx.png" --appendconfig="${{github.workspace}}\retroarch.cfg"
${{github.workspace}}\tools\RetroArch-Win64\retroarch.exe -L "${{github.workspace}}\genesis_plus_gx_libretro.dll" "${{github.workspace}}\build\Altered Beast (US).bin" --record="${{github.workspace}}\screenshots\gensplusgx.png" --appendconfig="${{github.workspace}}\retroarch.cfg"
Start-Sleep -Seconds 20
Stop-Process $(Get-Process retroarch | select -expand id)
- name: Run Picodrive and record movie
run: |
${{github.workspace}}\tools\RetroArch-Win64\retroarch.exe --libretro=picodrive_libretro.dll "${{github.workspace}}\build\Altered Beast (US).bin" --record="${{github.workspace}}\screenshots\picodrive.png" --appendconfig="${{github.workspace}}\retroarch.cfg"
${{github.workspace}}\tools\RetroArch-Win64\retroarch.exe -L "${{github.workspace}}\picodrive_libretro.dll" "${{github.workspace}}\build\Altered Beast (US).bin" --record="${{github.workspace}}\screenshots\picodrive.png" --appendconfig="${{github.workspace}}\retroarch.cfg"
Start-Sleep -Seconds 20
Stop-Process $(Get-Process retroarch | select -expand id)
- name: GIT Commit Build Records
Expand Down

0 comments on commit 7bf0aee

Please sign in to comment.