Skip to content

Commit

Permalink
chore: use github action secret for sha verification (#174)
Browse files Browse the repository at this point in the history
  • Loading branch information
acke authored Apr 12, 2024
1 parent 6c2f004 commit 3bbd12e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3bbd12e

Please sign in to comment.