Skip to content

Commit

Permalink
Disable JCC until 7.0.1-alpha is released
Browse files Browse the repository at this point in the history
  • Loading branch information
shartte committed Dec 23, 2024
1 parent c70a936 commit 71e306e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-prs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ jobs:
java: 21
# --info allows seeing STDOUT of tests
gradle_tasks: check --info
jar_compatibility: true
jar_compatibility: false # Until 7.0.0 is tagged
2 changes: 1 addition & 1 deletion .github/workflows/publish-jcc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:

jobs:
publish-jcc:
if: true
if: false
uses: neoforged/actions/.github/workflows/publish-jcc.yml@main
with:
beta_version_pattern: .* # Change this line if there's a clear point at which a version no longer accepts breaking changes
Expand Down
11 changes: 7 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,12 @@ changelog {

gradleutils.version {
branches {
suffixExemptedBranches.add("7.x")
suffixBranch()
}
tags {
label = 'alpha'
}
}

println "Version: ${project.version = gradleutils.version}"
Expand All @@ -32,6 +36,9 @@ allprojects {

gradleutils {
setupSigning(signAllPublications: true)
changelog {
from '7.0'
}
}

group = 'net.neoforged.fancymodloader'
Expand Down Expand Up @@ -101,8 +108,4 @@ subprojects { subProject ->
maven gradleutils.publishingMaven
}
}

changelog {
from "1.0"
}
}

0 comments on commit 71e306e

Please sign in to comment.