Skip to content

Setup release pipeline #1

Setup release pipeline

Setup release pipeline #1

Workflow file for this run

name: "Test"
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Retrieve the secrets and decode it to a file
run: |
echo $UPLOAD_KEYSTORE_BASE64 | base64 --decode > android/keystore/upload.keystore
echo $PLAY_STORE_CREDENTIALS_BASE64 | base64 --decode > android/fastlane/play-store-credentials.json
mv android/keystore/upload.keystore ${{ github.workspace }}/artifacts/android/upload.keystore
mv android/fastlane/play-store-credentials.json ${{ github.workspace }}/artifacts/android/play-store-credentials.json
shell: bash