Skip to content

Commit

Permalink
attempt to fix builds #1
Browse files Browse the repository at this point in the history
  • Loading branch information
unawarespecs committed Feb 8, 2025
1 parent 96f91a3 commit 376beca
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,11 @@ jobs:
pip install requests
- name: Decode Keystore File
run: |
echo ${{ secrets.KEYSTORE }} | base64 -d > ${{ github.workspace }}/kurobaex.jks
if [ -z "${{ secrets.KEYSTORE }}" ]; then
echo "KEYSTORE secret is not set"
exit 1
fi
echo "${{ secrets.KEYSTORE }}" | base64 --decode > "${{ github.workspace }}/kurobaex.jks"
- name: Build and Sign APK
run: |
cd Kuroba
Expand Down

0 comments on commit 376beca

Please sign in to comment.