Skip to content

Commit

Permalink
ci: Don't include mapping-*
Browse files Browse the repository at this point in the history
  • Loading branch information
null2264 committed Oct 24, 2024
1 parent 481a54b commit bc95905
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 0 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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])
}
}
Expand Down Expand Up @@ -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}")
Expand Down

0 comments on commit bc95905

Please sign in to comment.