Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Miha Drofenik committed Dec 25, 2023
1 parent 5f11b79 commit cf0baf5
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,20 @@ jobs:
uses: actions/checkout@v3
with:
ref: initial
- name: Copy service credentials file
run: echo -n "${{ secrets.FIREBASE_IAM_GOOGLE_SERVICES_JSON}}" | base64 --decode > ./fastlane/wildlife-watcher-service-account.json
- name: Copy google services file
run: echo -e "${{ secrets.ANDROID_GOOGLE_SERVICES_JSON }}" > android/app/google-services.json
- name: create-json
id: add-firebase-credentials
uses: jsdaniell/create-json@v1.2.2
with:
name: 'wildlife-watcher-service-account.json'
json: ${{ secrets.FIREBASE_IAM_GOOGLE_SERVICES_JSON }}
dir: './fastlane'
- name: create-json
id: add-android-credentials
uses: jsdaniell/create-json@v1.2.2
with:
name: 'google-services.json'
json: ${{ secrets.ANDROID_GOOGLE_SERVICES_JSON }}
dir: './android/app'
- name: Install npm dependency
run: npm install
# - name: Setup Android SDK
Expand Down

0 comments on commit cf0baf5

Please sign in to comment.