From 3bbd12e9d2a7e70503650a764707602503554ece Mon Sep 17 00:00:00 2001 From: Knut Funkel Date: Fri, 12 Apr 2024 11:43:23 +0200 Subject: [PATCH] chore: use github action secret for sha verification (#174) --- .github/workflows/release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3f341572..bd5cea89 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,9 +27,10 @@ jobs: env: fileName: ./keystore.jks encodedString: ${{ secrets.KEYSTORE }} + sha: ${{ secrets.KEYSTORE_SHA }} run: | echo "$encodedString" | base64 -d > $fileName - echo "6cab9fa86689a9969097a662891fe8a1d8752ac430c18750cfa4d230744ac4a7 $fileName" > sha256.txt + echo "$sha $fileName" > sha256.txt sha256sum -c sha256.txt - name: Build with Maven