Skip to content

Commit

Permalink
Merge branch 'develop' into feature/pinch-gesture
Browse files Browse the repository at this point in the history
  • Loading branch information
sds100 committed Oct 7, 2023
2 parents b1fc341 + c5fd625 commit 926ccde
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,10 @@ jobs:
ruby-version: '2.7'

- name: Create debug keystore
env:
CI_KEYSTORE: ${{ secrets.CI_KEYSTORE }}
run: |
echo "${{ secrets.CI_KEYSTORE }}" > debug.keystore.asc
gpg -d --passphrase "${{ secrets.CI_KEYSTORE_DECRYPT }}" --batch debug.keystore.asc > /home/runner/.android/debug.keystore
echo "$CI_KEYSTORE" | base64 --decode > /home/runner/.android/debug.keystore
- name: Install bundle
run: bundle install
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,10 @@ jobs:
ruby-version: '2.7'

- name: Create debug keystore
env:
CI_KEYSTORE: ${{ secrets.CI_KEYSTORE }}
run: |
echo "${{ secrets.CI_KEYSTORE }}" > debug.keystore.asc
gpg -d --passphrase "${{ secrets.CI_KEYSTORE_DECRYPT }}" --batch debug.keystore.asc > /home/runner/.android/debug.keystore
echo "$CI_KEYSTORE" | base64 --decode > /home/runner/.android/debug.keystore
- name: Install bundle
run: bundle install
Expand Down

0 comments on commit 926ccde

Please sign in to comment.