From 6f4735e4eada8454a69a3c1952e497a55789e0d7 Mon Sep 17 00:00:00 2001 From: Sebastian Schuberth Date: Fri, 17 May 2024 16:54:08 +0200 Subject: [PATCH] ci(github): Make signing properties available to the distribution Without these, signing is not configured and the respective tasks are not available. This is a fixup for 37ec96b. Signed-off-by: Sebastian Schuberth --- .github/workflows/release.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ac1ca0ac59d13..e253ddaf13546 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -40,6 +40,9 @@ jobs: ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.SIGNING_PASSWORD }} run: ./gradlew --no-configuration-cache publishAndReleaseToMavenCentral - name: Build ORT Distributions + env: + ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.SIGNING_KEY }} + ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.SIGNING_PASSWORD }} run: ./gradlew :cli:signDistTar :cli:signDistZip :helper-cli:signDistTar :helper-cli:signDistZip - name: Generate Release Notes run: ./gradlew -q printChangeLog > RELEASE_NOTES.md