diff --git a/.github/workflows/pr_build.yml b/.github/workflows/pr_build.yml index fa040884d7..39da5e05df 100644 --- a/.github/workflows/pr_build.yml +++ b/.github/workflows/pr_build.yml @@ -3,6 +3,7 @@ on: pull_request: branches: - dev + - pre-release types: [opened, reopened, synchronize, ready_for_review] jobs: diff --git a/scripts/full_package.py b/scripts/full_package.py index 19a50784f5..6dd7f4a851 100644 --- a/scripts/full_package.py +++ b/scripts/full_package.py @@ -80,19 +80,10 @@ def download_and_extract(owner: str, repo: str, tag: str, asset: str, extract_di hash_package.hash_folder("switch-package", "content_hashes.txt") hash_package.hash_folder_json("switch-package", "content_hashes.json") -# make a ryujinx package too -print("making ryujinx-package.zip") -os.remove("switch-package/atmosphere/contents/01006A800016E000/romfs/skyline/plugins/hdr-launcher.nro") -os.mkdir("switch-package/sdcard") -shutil.move("switch-package/atmosphere/", "switch-package/sdcard/") -shutil.move("switch-package/ultimate/", "switch-package/sdcard/") -shutil.make_archive("ryujinx-package", 'zip', 'switch-package') - # move the stuff to artifacts folder if os.path.exists("artifacts"): shutil.rmtree("artifacts") os.mkdir("artifacts") shutil.move("switch-package.zip", "artifacts") -shutil.move("ryujinx-package.zip", "artifacts") shutil.move("content_hashes.txt", "artifacts") shutil.move("content_hashes.json", "artifacts")