We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c2f004 commit 3bbd12eCopy full SHA for 3bbd12e
1 file changed
.github/workflows/release.yml
@@ -27,9 +27,10 @@ jobs:
27
env:
28
fileName: ./keystore.jks
29
encodedString: ${{ secrets.KEYSTORE }}
30
+ sha: ${{ secrets.KEYSTORE_SHA }}
31
run: |
32
echo "$encodedString" | base64 -d > $fileName
- echo "6cab9fa86689a9969097a662891fe8a1d8752ac430c18750cfa4d230744ac4a7 $fileName" > sha256.txt
33
+ echo "$sha $fileName" > sha256.txt
34
sha256sum -c sha256.txt
35
36
- name: Build with Maven
0 commit comments