Skip to content

Commit

Permalink
investigate why publishing from github actions doesn't work
Browse files Browse the repository at this point in the history
  • Loading branch information
maxjoehnk committed Nov 10, 2024
1 parent ebb8788 commit 075d162
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/mobile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,19 @@ jobs:
echo "keyAlias=$ANDROID_SIGNING_KEY_ALIAS" >> key.properties
echo "storeFile=keystore.jks" >> key.properties
working-directory: crates/ui
- name: Build
run: make android_bundle
working-directory: crates/ui
- name: Create service account file
env:
SERVICE_ACCOUNT_KEY_JSON: ${{ secrets.SERVICE_ACCOUNT_KEY_JSON }}
run: echo $SERVICE_ACCOUNT_KEY_JSON | base64 -d > service_account_key.json
working-directory: crates/ui/android
- name: Debug
working-directory: crates/ui
run: |
ls -la
ls -la android
- name: Build
run: make android_bundle
working-directory: crates/ui
- name: Deploy
run: bundle exec fastlane beta
working-directory: crates/ui/android

0 comments on commit 075d162

Please sign in to comment.