Skip to content

Commit

Permalink
Merge pull request #21 from StaticFX/development
Browse files Browse the repository at this point in the history
Release 1.0.1
  • Loading branch information
StaticFX authored May 29, 2024
2 parents 2cf1152 + 5c4bb98 commit 1e1a033
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/publish-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,6 @@ jobs:
- name: Publish package
run: ./gradlew publish
env:
GITHUB_TOKEN: ${{ secrets.JAVA_TOKEN }}
GITHUB_TOKEN: ${{ secrets.JAVA_TOKEN }}
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }}
10 changes: 9 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ plugins {
}

group = 'de.staticred.kia'
version = '1.0.0'
version = '1.0.1'

repositories {
mavenCentral()
Expand Down Expand Up @@ -84,6 +84,14 @@ publishing {
password = System.getenv("GITHUB_TOKEN")
}
}
maven {
name = "OSSRH"
url = "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
credentials {
username = System.getenv("MAVEN_USERNAME")
password = System.getenv("MAVEN_PASSWORD")
}
}
}

publications {
Expand Down

0 comments on commit 1e1a033

Please sign in to comment.