Make photon targeting respect snapshot repo (#309)

This commit is contained in:
Matt
2021-11-06 20:12:50 -04:00
committed by GitHub
parent 08fafe2607
commit a5cc0808c4

View File

@@ -6,11 +6,12 @@ def baseArtifactId = 'PhotonTargeting'
publishing {
repositories {
maven {
url 'https://maven.photonvision.org/repository/internal'
url ('https://maven.photonvision.org/repository/' + (isDev ? 'snapshots' : 'internal'))
credentials {
username 'ghactions'
password System.getenv("ARTIFACTORY_API_KEY")
}
println("Publishing PhotonTargeting to " + url)
}
}