diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index d204b5ab..f901384c 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -10,6 +10,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 + with: + fetch-depth: 0 - name: set up JDK 11 uses: actions/setup-java@v3 with: diff --git a/.github/workflows/readme.yml b/.github/workflows/readme.yml index a42bf6a7..54a009f8 100644 --- a/.github/workflows/readme.yml +++ b/.github/workflows/readme.yml @@ -8,6 +8,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 + with: + fetch-depth: 0 - name: set up JDK 11 uses: actions/setup-java@v3 with: diff --git a/publication.gradle b/publication.gradle index 2668926a..447343ba 100644 --- a/publication.gradle +++ b/publication.gradle @@ -61,10 +61,10 @@ publishing { } signing { - useInMemoryPgpKeys( - findProperty("signing.keyId") ?: "", - findProperty("signing.key") ?: "", - findProperty("signing.password") ?: "", - ) - sign publishing.publications +// useInMemoryPgpKeys( +// findProperty("signing.keyId") ?: "", +// findProperty("signing.key") ?: "", +// findProperty("signing.password") ?: "", +// ) +// sign publishing.publications }