We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b35e305 commit 867739fCopy full SHA for 867739f
gradle/publish.gradle
@@ -2,11 +2,11 @@ apply plugin:"maven-publish"
2
publishing {
3
repositories {
4
maven {
5
- name 'Nexus'
6
- url "https://nexus.ala.org.au/content/repositories/${project.version.endsWith('-SNAPSHOT') ? 'snapshots' : 'releases' }"
+ name 'GitHubPackages'
+ url uri("https://maven.pkg.github.com/atlasoflivingaustralia/ecodata-client-plugin")
7
credentials {
8
- username = System.getenv('TRAVIS_DEPLOY_USERNAME')
9
- password = System.getenv('TRAVIS_DEPLOY_PASSWORD')
+ username = System.getenv('GITHUB_ACTOR')
+ password = System.getenv('GITHUB_TOKEN')
10
}
11
12
0 commit comments