Skip to content

Commit

Permalink
Implement some of the APK signing steps
Browse files Browse the repository at this point in the history
  • Loading branch information
pcolby committed Jul 15, 2023
1 parent f77a662 commit 667daeb
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,16 @@ jobs:
- name: Download build artifacts
uses: actions/download-artifact@v3
with:
name: my-artifact
name: build-outputs
- name: Take a look around
run: ls -R
- name: Prep Java KeyStore
run: base64 --decode <<< "$JAVA_KEYSTORE" > "$RUNNER_TEMP/keystore.jks"
env:
JAVA_KEYSTORE: ${{ secrets.JAVA_KEYSTORE }}
- name: Sign APKs
run:
mkdir -p "$RUNNER_TEMP/apks"
find "$GITHUB_WORKSPACE" -name '*-unsigned.apk'
env:
JAVA_KEYSTORE_PASSWORD: ${{ secrets.JAVA_KEYSTORE_PASSWORD }}

0 comments on commit 667daeb

Please sign in to comment.