Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
./gradlew replaceDraftVersion -PdraftVersion=$RELEASE_VERSION
./gradlew replaceDraftVersion -PdraftVersion=$RELEASE_VERSION --no-configuration-cache

- name: Commit New Version
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:

- name: Update Version
run: |
./gradlew replaceNewVersion -PnewVersion=${{ github.event.release.tag_name }}
./gradlew replaceNewVersion -PnewVersion=${{ github.event.release.tag_name }} --no-configuration-cache
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -648,7 +648,7 @@ tasks.register("replaceDraftVersion") {
println("Set Replace version in GITHUB_ENV: $draftVersion")
} catch (e: NullPointerException) {
println("GITHUB_ENV not found")
println(e.stackTrace)
println(e.printStackTrace())
}
}
}
Loading