From 57af96fe692b049638afe8ca4c433e3d856ce1c9 Mon Sep 17 00:00:00 2001 From: DaloLorn Date: Mon, 31 Jan 2022 16:06:14 +0100 Subject: [PATCH] Oooops. That's not the right script. --- .github/workflows/build-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index 3571867..83389b7 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -31,7 +31,7 @@ jobs: - name: Build standalone release run: ./gradlew jlink - name: Create standalone launcher - run: '"cd bin && OSRLaunchpad.bat" | Out-File -FilePath OpenStarRuler-Launchpad\OSRLauncher.bat -Encoding "ascii"' + run: '"bin\OSRLaunchpad.bat" | Out-File -FilePath OSRLaunchpad.bat -Encoding "ascii"' shell: powershell - name: Pack standalone release run: New-Item -Name "OpenStarRuler-Launchpad" -ItemType "directory"; Rename-Item README.md README.txt; Copy-Item -Path README.txt,LICENSE.txt,build/image/*,OSRLaunchpad.bat -Destination "OpenStarRuler-Launchpad" -Recurse; Compress-Archive -Path "OpenStarRuler-Launchpad" -DestinationPath "standalone-windows.zip"