diff --git a/.github/workflows/javadoc.yml b/.github/workflows/javadoc.yml deleted file mode 100644 index a5273374..00000000 --- a/.github/workflows/javadoc.yml +++ /dev/null @@ -1,25 +0,0 @@ -#name: javadoc -#on: -# push: -# branches: -# - main -#jobs: -# javadoc: -# runs-on: ubuntu-latest -# concurrency: docs-${{ github.ref }} -# name: 📚 Docs -# steps: -# - name: Checkout -# uses: actions/checkout@v3 -# with: -# persist-credentials: false -# -# - name: Generate doc -# run: ./gradlew --no-daemon javadoc -# -# - name: Deploy -# uses: JamesIves/github-pages-deploy-action@v4 -# with: -# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} -# BRANCH: gh-pages -# FOLDER: build/docs/javadoc/ diff --git a/CHANGELOG.md b/CHANGELOG.md index 87b3e630..8e2d1c89 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. + +### 0.1.2 (2025-02-12) + ### 0.1.1 (2025-02-12) + ## 0.1.0 (2025-02-12) diff --git a/build.gradle.kts b/build.gradle.kts index 708cbcb5..90c7b5bc 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -103,6 +103,7 @@ extra["signing.keyId"] = "" extra["signing.password"] = "" extra["signing.secretKeyRingFile"] = "" extra["sonatypeStagingProfileId"] = "" +extra["signing.gpgkeycontents"] = "" val secretPropsFile = project.rootProject.file("local.properties") if (secretPropsFile.exists()) { @@ -117,6 +118,7 @@ if (secretPropsFile.exists()) { extra["signing.keyId"] = System.getenv("SIGNING_KEY_ID") ?: "" extra["signing.password"] = System.getenv("SIGNING_PASSWORD") ?: "" extra["signing.secretKeyRingFile"] = System.getenv("SIGNING_SECRET_KEY_RING_FILE") ?: "" + extra["signing.gpgkeycontents"] = System.getenv("GPG_KEY_CONTENTS") ?: "" extra["sonatypeStagingProfileId"] = System.getenv("SONATYPE_STAGING_PROFILE_ID") ?: "" } @@ -158,7 +160,7 @@ publishing { signing { useInMemoryPgpKeys( extra["signing.keyId"] as String, - extra["signing.secretKeyRingFile"] as String, + extra["signing.gpgkeycontents"] as String, extra["signing.password"] as String ) sign(publishing.publications) diff --git a/gradle.properties b/gradle.properties index a482420b..4cf2c9ee 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1 +1,2 @@ -version=0.1.1 +version=0.1.2 +