Skip to content

Commit

Permalink
bump the library version to 0.1.2 and try again
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Jul 3, 2024
1 parent 645ffec commit 493ff48
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

name: CI at GitHub
on: [push]
permissions: write-all

jobs:
Java11-Linux:
Expand Down Expand Up @@ -114,10 +115,10 @@ jobs:
- name: stage artifacts to Sonatype OSSRH
if: startsWith(github.ref, 'refs/tags/')
run: ./gradlew -Pflavor=Sp release --console=plain \
-PossrhPassword=${{ secrets.OSSRH_PASSWORD }} \
-PossrhUsername=${{ secrets.OSSRH_USERNAME }} \
-PsigningKey='${{ secrets.SIGNING_KEY }}' \
-PsigningPassword='${{ secrets.SIGNING_PASSWORD }}'
-PossrhPassword='${{ secrets.OSSRH_PASSWORD }}' \
-PossrhUsername='${{ secrets.OSSRH_USERNAME }}' \
-Psigning.keyId='${{ secrets.SIGNING_KEY }}' \
-Psigning.password='${{ secrets.SIGNING_PASSWORD }}'

- name: deploy artifacts and native libraries to a GitHub release
if: startsWith(github.ref, 'refs/tags/')
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ plugins {
ext {
group = 'com.github.stephengold'
artifact = 'joltjni'
version = '0.1.1'
version = '0.1.2'
baseName = "${artifact}-${version}" // for artifacts
websiteUrl = 'https://github.com/stephengold/jolt-jni'
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,6 @@ JNIEXPORT void JNICALL Java_com_github_stephengold_joltjni_Jolt_unregisterTypes
*/
JNIEXPORT jstring JNICALL Java_com_github_stephengold_joltjni_Jolt_versionString
(JNIEnv *pEnv, jclass) {
jstring result = pEnv->NewStringUTF("0.1.1");
jstring result = pEnv->NewStringUTF("0.1.2");
return result;
}

0 comments on commit 493ff48

Please sign in to comment.