mirror of
https://github.com/ViaVersion/ViaFabric.git
synced 2024-12-21 16:17:37 +01:00
use system env instead of project property
This commit is contained in:
parent
d049a80010
commit
3388885b1b
@ -22,4 +22,4 @@ install: true
|
|||||||
script:
|
script:
|
||||||
# Set up git user name and tag this commit
|
# Set up git user name and tag this commit
|
||||||
- if [ -z $TRAVIS_TAG ] && [ -z $(git tag -l --points-at HEAD) ]; then git config --local user.name "creeper12313321"; git config --local user.email "7974274+creeper123123321@users.noreply.github.com"; export TRAVIS_TAG=build-$TRAVIS_JOB_NUMBER; git tag $TRAVIS_TAG; fi
|
- if [ -z $TRAVIS_TAG ] && [ -z $(git tag -l --points-at HEAD) ]; then git config --local user.name "creeper12313321"; git config --local user.email "7974274+creeper123123321@users.noreply.github.com"; export TRAVIS_TAG=build-$TRAVIS_JOB_NUMBER; git tag $TRAVIS_TAG; fi
|
||||||
- ./gradlew clean build
|
- ./gradlew
|
||||||
|
@ -71,10 +71,14 @@ dependencies {
|
|||||||
include("io.github.cottonmc:cotton-client-commands:1.0.1+1.16-rc1")
|
include("io.github.cottonmc:cotton-client-commands:1.0.1+1.16-rc1")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!System.getenv()["curse_api_key"].isNullOrBlank() && branch.startsWith("mc-")) {
|
||||||
|
defaultTasks("clean", "build", "curseforge")
|
||||||
|
} else {
|
||||||
|
defaultTasks("clean", "build")
|
||||||
|
}
|
||||||
|
|
||||||
curseforge {
|
curseforge {
|
||||||
if (project.hasProperty("curse_api_key")) {
|
apiKey = System.getenv()["curse_api_key"]
|
||||||
apiKey = project.properties["curse_api_key"]
|
|
||||||
}
|
|
||||||
project(closureOf<com.matthewprenger.cursegradle.CurseProject> {
|
project(closureOf<com.matthewprenger.cursegradle.CurseProject> {
|
||||||
id = "391298"
|
id = "391298"
|
||||||
changelog = "A changelog can be found at https://github.com/ViaVersion/ViaFabric/commits"
|
changelog = "A changelog can be found at https://github.com/ViaVersion/ViaFabric/commits"
|
||||||
|
Loading…
Reference in New Issue
Block a user