Skip to content

Commit 1ff799c

Browse files
refactor:
* remove github action * update build.gradle.kts * update jitpack.yml
1 parent 46c5450 commit 1ff799c

File tree

3 files changed

+6
-48
lines changed

3 files changed

+6
-48
lines changed

.github/workflows/release.yml

Lines changed: 0 additions & 37 deletions
This file was deleted.

build.gradle.kts

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ plugins {
99
group = "net.purefunc"
1010
version = System.getenv("GITHUB_REF_NAME")
1111
java.sourceCompatibility = JavaVersion.VERSION_11
12+
java.targetCompatibility = JavaVersion.VERSION_11
1213

1314
repositories {
1415
mavenCentral()
@@ -31,17 +32,6 @@ tasks.withType<Test> {
3132
}
3233

3334
publishing {
34-
repositories {
35-
maven {
36-
name = "GitHubPackages"
37-
url = uri("https://maven.pkg.github.com/PureFuncInc/emoji-jvm-string")
38-
credentials {
39-
username = "Pure-Func-Inc"
40-
password = System.getenv("GITHUB_PUBLISH_TOKEN")
41-
}
42-
}
43-
}
44-
4535
publications {
4636
create<MavenPublication>("maven") {
4737
from(components["java"])

jitpack.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
jdk:
2+
- openjdk11
3+
install:
4+
- ./gradlew run
5+
- ./gradlew clean install

0 commit comments

Comments
 (0)