mirror of
https://github.com/architectury/architectury-loom.git
synced 2026-04-02 13:37:45 -05:00
15 lines
220 B
Groovy
15 lines
220 B
Groovy
node {
|
|
stage 'Checkout'
|
|
|
|
checkout scm
|
|
|
|
stage 'Build'
|
|
|
|
sh "rm -rf build/libs/"
|
|
sh "chmod +x gradlew"
|
|
sh "./gradlew build --refresh-dependencies"
|
|
|
|
stage "Archive artifacts"
|
|
|
|
sh "./gradlew publish"
|
|
} |