Skip to content

Commit

Permalink
next trial
Browse files Browse the repository at this point in the history
  • Loading branch information
Niko Stotz committed Nov 7, 2023
1 parent 7178608 commit 88bc27a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 20 deletions.
14 changes: 1 addition & 13 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,16 +50,4 @@ jobs:
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }}
OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}
RELEASE_VERSION: ${{ inputs.release_version }}
run: xvfb-run ./gradlew release

- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action@v2
if: always()
with:
files: |
TEST-*.xml
large_files: "true"
report_individual_runs: "true"
report_suite_logs: "any"
check_run_annotations: all tests, skipped tests
action_fail: "true"
run: ./gradlew release
8 changes: 1 addition & 7 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -128,12 +128,6 @@ configurations.getByName("libs") {
}
}

tasks{
checkMps {
// buildScript.set(file("build-tests.xml"))
}
}

tasks.withType(Sign::class) {
onlyIf("isReleaseVersion is set") { isReleaseVersion }
}
Expand All @@ -145,7 +139,7 @@ signing {
val signingKey: String? = System.getenv("SIGNING_KEY")
val signingPassword: String? = System.getenv("SIGNING_PASSWORD")
if (signingKey != null && signingPassword != null) {
println("using inMemory keys, releaseVersion: ${isReleaseVersion}")
println("using inMemory keys with size ${signingKey.length}/${signingPassword.length}, releaseVersion: ${isReleaseVersion}")
useInMemoryPgpKeys(signingKey, signingPassword)
}
sign(publishing.publications["mpsPlugin"])
Expand Down

0 comments on commit 88bc27a

Please sign in to comment.