Skip to content

Commit

Permalink
Fix bracker on path due Powershell convetions
Browse files Browse the repository at this point in the history
  • Loading branch information
hansbonini committed Jul 7, 2024
1 parent c192709 commit 622c6cd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ jobs:
- name: Prepare Build
run: |
mkdir build
echo "" > "${{github.workspace}}\build\Altered Beast (UE) (REV02) [\!].bin"
echo "" > "${{github.workspace}}\build\Altered Beast (UE) (REV02) [\!].txt"
echo "" > "${{github.workspace}}\build\Altered Beast (UE) (REV02) `[!`].bin"
echo "" > "${{github.workspace}}\build\Altered Beast (UE) (REV02) `[!`].txt"
- name: Create Screenshots directory
id: createscreenshotsdir
run: |
Expand All @@ -31,15 +31,15 @@ jobs:
make WORKSPACE="$GHWORKSPACE" NAME="Altered Beast" REGION="UE" VERSION=REV02 ASM68K_SWITCHES="//m //p //k" build
- name: Run Picodrive and record movie
run: |
Invoke-Expression '${{github.workspace}}\tools\RetroArch-Win64\retroarch.exe -L "${{github.workspace}}\tools\RetroArch-Win64\cores\picodrive_libretro.dll" --appendconfig="${{github.workspace}}\retroarch.cfg" --record="${{github.workspace}}\screenshots\picodrive.gif" --max-frames=2600 "${{github.workspace}}\build\Altered Beast (UE) (REV02) [!].bin" --verbose' -ErrorAction SilentlyContinue
Invoke-Expression '${{github.workspace}}\tools\RetroArch-Win64\retroarch.exe -L "${{github.workspace}}\tools\RetroArch-Win64\cores\picodrive_libretro.dll" --appendconfig="${{github.workspace}}\retroarch.cfg" --record="${{github.workspace}}\screenshots\picodrive.gif" --max-frames=2600 "${{github.workspace}}\build\Altered Beast (UE) (REV02) `[!`].bin" --verbose' -ErrorAction SilentlyContinue
Start-Sleep -Seconds 20
- name: Run Genesis Plus Gx and record movie
run: |
Invoke-Expression '${{github.workspace}}\tools\RetroArch-Win64\retroarch.exe -L "${{github.workspace}}\tools\RetroArch-Win64\cores\genesis_plus_gx_libretro.dll" --appendconfig="${{github.workspace}}\retroarch.cfg" --record="${{github.workspace}}\screenshots\genesisplusgx.gif" --max-frames=2600 "${{github.workspace}}\build\Altered Beast (UE) (REV02) [!].bin" --verbose' -ErrorAction SilentlyContinue
Invoke-Expression '${{github.workspace}}\tools\RetroArch-Win64\retroarch.exe -L "${{github.workspace}}\tools\RetroArch-Win64\cores\genesis_plus_gx_libretro.dll" --appendconfig="${{github.workspace}}\retroarch.cfg" --record="${{github.workspace}}\screenshots\genesisplusgx.gif" --max-frames=2600 "${{github.workspace}}\build\Altered Beast (UE) (REV02) `[!`].bin" --verbose' -ErrorAction SilentlyContinue
Start-Sleep -Seconds 20
- name: Run Blastem and record movie
run: |
Invoke-Expression '${{github.workspace}}\tools\RetroArch-Win64\retroarch.exe -L "${{github.workspace}}\tools\RetroArch-Win64\cores\blastem_libretro.dll" --appendconfig="${{github.workspace}}\retroarch.cfg" --record="${{github.workspace}}\screenshots\blastem.gif" --max-frames=2600 "${{github.workspace}}\build\Altered Beast (UE) (REV02) [!].bin" --verbose' -ErrorAction SilentlyContinue
Invoke-Expression '${{github.workspace}}\tools\RetroArch-Win64\retroarch.exe -L "${{github.workspace}}\tools\RetroArch-Win64\cores\blastem_libretro.dll" --appendconfig="${{github.workspace}}\retroarch.cfg" --record="${{github.workspace}}\screenshots\blastem.gif" --max-frames=2600 "${{github.workspace}}\build\Altered Beast (UE) (REV02) `[!`].bin" --verbose' -ErrorAction SilentlyContinue
Start-Sleep -Seconds 20
- name: GIT Commit Build Records
if: github.event_name == 'push'
Expand Down

0 comments on commit 622c6cd

Please sign in to comment.