Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

creating unsigned apk using signing credentials. #56

Open
bishwajeetbiswas opened this issue Oct 1, 2021 · 1 comment
Open

creating unsigned apk using signing credentials. #56

bishwajeetbiswas opened this issue Oct 1, 2021 · 1 comment

Comments

@bishwajeetbiswas
Copy link

bishwajeetbiswas commented Oct 1, 2021

Why below code is generating production-release-unsigned-signed.apk :

steps:
- uses: actions/checkout@v2
- name: set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Make gradlew executable
run: chmod +x ./gradlew
# 2
- name: Generate Release APK
run: ./gradlew assembleProductionRelease --stacktrace
# 3
- name: Sign APK
uses: r0adkll/sign-android-release@v1
# ID used to access action output
id: sign_app
with:
releaseDirectory: app/build/outputs/apk/production/release
signingKeyBase64: ${{ secrets.SIGNING_KEY }}
alias: ${{ secrets.ALIAS }}
keyStorePassword: ${{ secrets.KEY_STORE_PASS }}
keyPassword: ${{ secrets.KEY_PASS }}
# 4
- uses: actions/upload-artifact@v2
with:
name: Signed app bundle
path: ${{steps.sign_app.outputs.signedReleaseFile}}

@androidDevVivek
Copy link

Same thing happening with my workflow also.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants