Skip to content

Commit

Permalink
Fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
prof18 committed Jul 23, 2023
1 parent 5622008 commit a5aefb4
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/desktop-macos-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,14 @@ jobs:
SIGNING_CERTIFICATE_PASSWORD: ${{ secrets.SIGNING_CERTIFICATE_PASSWORD_MACOS }}
KEYCHAIN_PASSWORD_MACOS: ${{ secrets.KEYCHAIN_PASSWORD_MACOS }}

# Required to run checks
- name: Create Firebase json
run: |
echo "$FIREBASE_JSON" > androidApp/google-services.json.b64
base64 -d -i androidApp/google-services.json.b64 > androidApp/google-services.json
env:
FIREBASE_JSON: ${{ secrets.FIREBASE_JSON }}

- name: Run Checks
run: ./gradlew check

Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/ios-testflight-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,14 @@ jobs:
gradle-home-cache-cleanup: true
cache-read-only: false

# Required to run checks
- name: Create Firebase json
run: |
echo "$FIREBASE_JSON" > androidApp/google-services.json.b64
base64 -d -i androidApp/google-services.json.b64 > androidApp/google-services.json
env:
FIREBASE_JSON: ${{ secrets.FIREBASE_JSON }}

- name: Run Checks
run: ./gradlew check

Expand Down

0 comments on commit a5aefb4

Please sign in to comment.