Skip to content

Commit

Permalink
lint action fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
jedi1150 committed Feb 4, 2024
1 parent 2e429a9 commit 8fd792d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy_internal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
run: bundle install

# Decode Secrets
- name: Decode Keystore for prod signing
- name: Decode secrets
run: |
echo "$KEYSTORE_PROD" > app/keystore.jks.base64
base64 -d -i app/keystore.jks.base64 > app/keystore.jks
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,13 @@ jobs:
- uses: gradle/actions/setup-gradle@v3
id: setup-gradle

- name: Create google-services.json file
run: |
echo "$GOOGLE_SERVICES_JSON" > app/google-services.json.base64
base64 -d -i app/google-services.json.base64 > app/google-services.json
env:
GOOGLE_SERVICES_JSON: ${{ secrets.GOOGLE_SERVICES_JSON }}

- name: Check lint
run: ./gradlew lint

Expand Down

0 comments on commit 8fd792d

Please sign in to comment.