From 8832bb9e9c138fb7d671d6223e05d20934f1e9ec Mon Sep 17 00:00:00 2001 From: Technocality <105610111+Technocality@users.noreply.github.com> Date: Tue, 18 Nov 2025 21:27:14 -0600 Subject: [PATCH] fix(RC publish): loaders correctly assigned --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 4ee080022..32c47e911 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -380,7 +380,7 @@ jobs: files: | artifacts/${{ env.PACK_NAME }}-${{ matrix.version }}-${{ matrix.loader }}-${{ env.VERSION }}-modrinth.mrpack - name: "${{ needs.check-tag.outputs.is_lite == 'true' && 'RC-Lite' || 'RC' }} ${{ env.VERSION }} (${{ matrix.loader == 'neoforged' && 'NeoForge' || 'Fabric' }} ${{ matrix.version }})" + name: "${{ needs.check-tag.outputs.is_lite == 'true' && 'RC-Lite' || 'RC' }} ${{ env.VERSION }} (${{ matrix.loader == 'neoforged' ? 'NeoForge' : matrix.loader == 'neoforge' ? 'NeoForge' : matrix.loader == 'forge' ? 'Forge' : matrix.loader == 'fabric' ? 'Fabric' : matrix.loader == 'quilt' ? 'Quilt' : 'ERROR, FIX ME IN publish.yml' }})" version: "${{ env.VERSION }}-${{ matrix.loader }}-${{ matrix.version }}" version-type: ${{ github.event_name == 'release' && (contains(github.event.release.tag_name, 'alpha') && 'alpha' || contains(github.event.release.tag_name, 'beta') && 'beta' || 'release') || 'alpha' }} @@ -450,7 +450,7 @@ jobs: files: | artifacts/${{ env.PACK_NAME }}-${{ matrix.version }}-${{ matrix.loader }}-${{ env.VERSION }}-curseforge.zip - name: "${{ needs.check-tag.outputs.is_lite == 'true' && 'RC-Lite' || 'RC' }} ${{ env.VERSION }} (${{ matrix.loader == 'neoforged' && 'NeoForge' || 'Fabric' }} ${{ matrix.version }})" + name: "${{ needs.check-tag.outputs.is_lite == 'true' && 'RC-Lite' || 'RC' }} ${{ env.VERSION }} (${{ matrix.loader == 'neoforged' ? 'NeoForge' : matrix.loader == 'neoforge' ? 'NeoForge' : matrix.loader == 'forge' ? 'Forge' : matrix.loader == 'fabric' ? 'Fabric' : matrix.loader == 'quilt' ? 'Quilt' : 'ERROR, FIX ME IN publish.yml' }})" version: "${{ env.VERSION }}-${{ matrix.loader }}-${{ matrix.version }}" version-type: ${{ github.event_name == 'release' && (contains(github.event.release.tag_name, 'alpha') && 'alpha' || contains(github.event.release.tag_name, 'beta') && 'beta' || 'release') || 'alpha' }}