Add release pipeline

This commit is contained in:
raoulvdberge
2021-12-12 21:48:15 +01:00
parent bc8b300e37
commit ac8bbce286
2 changed files with 95 additions and 0 deletions

View File

@@ -126,3 +126,21 @@ jar {
}
jar.finalizedBy('reobfJar')
publishing {
repositories {
maven {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/refinedmods/refinedstorage")
credentials {
username = System.getenv("GITHUB_ACTOR")
password = System.getenv("GITHUB_TOKEN")
}
}
}
publications {
gpr(MavenPublication) {
from(components.java)
}
}
}