Skip to content

Commit

Permalink
publish to github packages
Browse files Browse the repository at this point in the history
  • Loading branch information
skovati committed Oct 9, 2024
1 parent 6206045 commit 399bf91
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions procedural/plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {

// adding this as an implementation dependency here allows usage in our convention plugin
dependencies {
implementation("com.gradleup.shadow:shadow-gradle-plugin:8.3.2")
implementation("com.gradleup.shadow:shadow-gradle-plugin:8.3.3")
}

tasks.publish {
Expand All @@ -20,8 +20,8 @@ publishing {
}
repositories {
maven {
name = "GitHubPackages"
url = "https://maven.pkg.github.com/skovati/copie"
name = findProperty("publishing.name")
url = findProperty("publishing.url")
credentials {
username = System.getenv("GITHUB_ACTOR")
password = System.getenv("GITHUB_TOKEN")
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ pluginManagement {
repositories {
maven {
name = "GitHubPackages"
url = "https://maven.pkg.github.com/skovati/copie"
url = "https://maven.pkg.github.com/NASA-AMMOS/aerie"
credentials {
username = System.getenv("GITHUB_ACTOR")
password = System.getenv("GITHUB_TOKEN")
Expand Down

0 comments on commit 399bf91

Please sign in to comment.