Skip to content
This repository has been archived by the owner on Nov 22, 2020. It is now read-only.

Commit

Permalink
Revert publishing via Github Package
Browse files Browse the repository at this point in the history
It quite not intuitive for consumers to use
  • Loading branch information
GSculerlor committed Apr 26, 2020
1 parent 2da1060 commit c9378f8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 59 deletions.
39 changes: 0 additions & 39 deletions .github/workflows/publish-release.yml

This file was deleted.

23 changes: 3 additions & 20 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
plugins {
kotlin("jvm") version "1.3.61"
maven
`maven-publish`
}

repositories {
Expand All @@ -11,6 +10,9 @@ repositories {
maven("https://kotlin.bintray.com/kotlinx")
}

group = "com.github.GSculerlor"
version = "1.1.0"

dependencies {
implementation(kotlin("stdlib-jdk8"))

Expand Down Expand Up @@ -41,23 +43,4 @@ tasks {
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
}

publishing {
publications {
register("gpr", MavenPublication::class) {
from(components["java"])
}
}

repositories {
maven {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/GSculerlor/JikanKt")
credentials {
username = System.getenv("GITHUB_ACTOR")
password = System.getenv("GITHUB_TOKEN")
}
}
}
}

0 comments on commit c9378f8

Please sign in to comment.