From 236e3a80f6faaf74e63584cd6058a10927670c8d Mon Sep 17 00:00:00 2001 From: str1k3r <115313679+S1l3ntStr1ke87@users.noreply.github.com> Date: Sun, 2 Aug 2026 17:37:24 -0400 Subject: [PATCH] fix: plat workflows and add dropdown for config --- .gitea/workflows/orbis.yaml | 8 +++++++- .gitea/workflows/ps3.yaml | 6 ++++++ .gitea/workflows/psvita.yaml | 8 +++++++- .gitea/workflows/windows64.yaml | 6 ++++++ .gitea/workflows/xbox.yaml | 6 ++++++ 5 files changed, 32 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/orbis.yaml b/.gitea/workflows/orbis.yaml index 302d32cf..dce55726 100644 --- a/.gitea/workflows/orbis.yaml +++ b/.gitea/workflows/orbis.yaml @@ -7,6 +7,12 @@ on: description: 'Configuration for the build (e.g. Debug, Release).' required: true default: 'Release' + type: choice + options: + - Debug + - Release + - ContentPackage + - ReleaseForArt jobs: build: @@ -39,7 +45,7 @@ jobs: run: | New-Item -ItemType Directory -Force -Path staging Copy-Item LCE${{ matrix.platform }}.zip staging/ - Copy-Item "./ORBIS_${{ matrix.configuration }}/Minecraft.Client.pkg" staging/LCEOrbis.pkg + Copy-Item "./ORBIS_${{ inputs.configuration }}/Minecraft.Client.pkg" staging/LCEOrbis.pkg - name: Upload artifacts uses: https://github.com/actions/upload-artifact@v3 diff --git a/.gitea/workflows/ps3.yaml b/.gitea/workflows/ps3.yaml index fc41f9c2..d908f44c 100644 --- a/.gitea/workflows/ps3.yaml +++ b/.gitea/workflows/ps3.yaml @@ -7,6 +7,12 @@ on: description: 'Configuration for the build (e.g. Debug, Release).' required: true default: 'Release' + type: choice + options: + - Debug + - Release + - ContentPackage + - ReleaseForArt jobs: build: diff --git a/.gitea/workflows/psvita.yaml b/.gitea/workflows/psvita.yaml index 50d906f3..dc2c1132 100644 --- a/.gitea/workflows/psvita.yaml +++ b/.gitea/workflows/psvita.yaml @@ -7,6 +7,12 @@ on: description: 'Configuration for the build (e.g. Debug, Release).' required: true default: 'Release' + type: choice + options: + - Debug + - Release + - ContentPackage + - ReleaseForArt jobs: build: @@ -37,7 +43,7 @@ jobs: run: | New-Item -ItemType Directory -Force -Path staging Copy-Item LCE${{ matrix.platform }}.zip staging/ - Copy-Item "./PSVita_${{ matrix.configuration }}/Minecraft.Client.vpk" staging/LCEPSVita.vpk + Copy-Item "./PSVita_${{ inputs.configuration }}/Minecraft.Client.vpk" staging/LCEPSVita.vpk - name: Upload artifacts uses: https://github.com/actions/upload-artifact@v3 diff --git a/.gitea/workflows/windows64.yaml b/.gitea/workflows/windows64.yaml index d414f7ee..54bdddbb 100644 --- a/.gitea/workflows/windows64.yaml +++ b/.gitea/workflows/windows64.yaml @@ -7,6 +7,12 @@ on: description: 'Configuration for the build (e.g. Debug, Release).' required: true default: 'Release' + type: choice + options: + - Debug + - Release + - ContentPackage + - ReleaseForArt jobs: build: diff --git a/.gitea/workflows/xbox.yaml b/.gitea/workflows/xbox.yaml index 11daf306..3afadd05 100644 --- a/.gitea/workflows/xbox.yaml +++ b/.gitea/workflows/xbox.yaml @@ -7,6 +7,12 @@ on: description: 'Configuration for the build (e.g. Debug, Release).' required: true default: 'Release' + type: choice + options: + - Debug + - Release + - ContentPackage + - ReleaseForArt jobs: build: