Skip to content

Commit

Permalink
Merge pull request #67 from omer358/dev
Browse files Browse the repository at this point in the history
resolves #66
  • Loading branch information
omer358 authored Aug 24, 2024
2 parents ed37d2b + 75a6b6e commit eb85c25
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/build_and_deploy_apk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,19 @@ jobs:
KEYALIAS: ${{ secrets.REMEMBER_ME_KEYSTORE_ALIAS }}
run: ./gradlew build

- name: Build AAB with Gradle
env:
KEYPASSWORD: ${{ secrets.REMEMBER_ME_KEY_PASSWORD }}
STOREPASSWORD: ${{ secrets.REMEMBER_ME_KEYSTORE_PASSWORD }}
KEYALIAS: ${{ secrets.REMEMBER_ME_KEYSTORE_ALIAS }}
run: ./gradlew bundleRelease

- name: Upload build artifacts
uses: actions/upload-artifact@v2
with:
name: build
path: app/build/outputs/apk/release/*.apk
path: |
app/build/outputs/apk/release/*.apk
app/build/outputs/bundle/release/*.aab

0 comments on commit eb85c25

Please sign in to comment.