mirror of
https://github.com/Creators-of-Create/Create.git
synced 2025-03-04 06:44:40 +01:00
Merge remote-tracking branch 'upstream/mc1.20.1/dev' into mc1.21.1/dev
# Conflicts: # .github/workflows/build.yml # .github/workflows/release.yml
This commit is contained in:
commit
eccf2de123
3 changed files with 10 additions and 10 deletions
5
.github/workflows/build.yml
vendored
5
.github/workflows/build.yml
vendored
|
@ -10,7 +10,10 @@ jobs:
|
|||
uses: actions/checkout@v4
|
||||
|
||||
- name: Setup Java
|
||||
run: echo "JAVA_HOME=$JAVA_HOME_21_X64" >> "$GITHUB_ENV"
|
||||
uses: actions/setup-java@v4
|
||||
with:
|
||||
distribution: 'temurin'
|
||||
java-version: '21'
|
||||
|
||||
- name: ModDevGradle Cache
|
||||
uses: actions/cache@v4
|
||||
|
|
5
.github/workflows/release.yml
vendored
5
.github/workflows/release.yml
vendored
|
@ -10,7 +10,10 @@ jobs:
|
|||
uses: actions/checkout@v4
|
||||
|
||||
- name: Setup Java
|
||||
run: echo "JAVA_HOME=$JAVA_HOME_21_X64" >> "$GITHUB_ENV"
|
||||
uses: actions/setup-java@v4
|
||||
with:
|
||||
distribution: 'temurin'
|
||||
java-version: '21'
|
||||
|
||||
- name: Setup Gradle
|
||||
uses: gradle/actions/setup-gradle@v4
|
||||
|
|
10
Jenkinsfile
vendored
10
Jenkinsfile
vendored
|
@ -23,14 +23,8 @@ pipeline {
|
|||
stage('Build') {
|
||||
|
||||
steps {
|
||||
|
||||
withCredentials([
|
||||
file(credentialsId: 'build_secrets', variable: 'ORG_GRADLE_PROJECT_secretFile')
|
||||
]) {
|
||||
|
||||
echo 'Building project.'
|
||||
sh './gradlew build publish --stacktrace --warn'
|
||||
}
|
||||
echo 'Building project.'
|
||||
sh './gradlew build publish --stacktrace --warn'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue