diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a55f56b..623b6fc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,7 +17,7 @@ jobs: - name: Get mod versions id: get-mod-versions run: | - echo "versions=$(ls versions | grep -e '.\.' | tr '\n' ' ')" >> $GITHUB_OUTPUT + echo "versions=$(ls versions | grep -e '.\.' | grep -v 'mapping-' | tr '\n' ' ')" >> $GITHUB_OUTPUT - name: Build with Gradle uses: null2264/actions/replaymod-preprocessor-compile@6712f98d592b126629afd27dc4870c93b53426b4 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2d85e5a..e803a7b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,7 +19,7 @@ jobs: - name: Get mod versions id: get-mod-versions run: | - echo "versions=$(ls versions | grep -e '.\.' | tr '\n' ' ')" >> $GITHUB_OUTPUT + echo "versions=$(ls versions | grep -e '.\.' | grep -v 'mapping-' | tr '\n' ' ')" >> $GITHUB_OUTPUT - name: Build with Gradle uses: null2264/actions/replaymod-preprocessor-compile@1cc44b9be27b8914ca577a0905288e99c67df067 diff --git a/build.gradle.kts b/build.gradle.kts index c7e3c5a..43db44f 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -155,7 +155,6 @@ dependencies { 12006 to "20.6.121", 12101 to "21.1.72", 12103 to "21.3.1-beta", - // FIXME: 1.21.2 )[mcVersion]) } } @@ -251,7 +250,6 @@ dependencies { val fallbackJeiMcVer = "1.21.1" // fallback -> val jeiMc = mapOf( - 12006 to "1.20.6", // JEI skipped 1.20.5 12103 to fallbackJeiMcVer, ) modCompileOnly("mezz.jei:jei-${jeiMc[mcVersion] ?: mcVersionStr}-common-api:${jeiVersion ?: fallbackJeiVer}")