Skip to content

Commit

Permalink
fix codeql scanning
Browse files Browse the repository at this point in the history
  • Loading branch information
techmaved committed Dec 15, 2023
1 parent 2c7e7bd commit d163723
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ on:
jobs:
codeql:
name: Run CodeQL
environment: Release
runs-on: ubuntu-latest

steps:
Expand All @@ -35,8 +36,19 @@ jobs:
with:
languages: 'kotlin'

- name: Decode Keystore
env:
ENCODED_STRING: ${{ secrets.SIGNING_KEY_STORE_BASE64 }}
run: |
echo $ENCODED_STRING | base64 --decode > app/keystore.jks
- name: Autobuild
uses: github/codeql-action/autobuild@v2
env:
SIGNING_KEY_STORE_PATH: app/keystore.jks
SIGNING_KEY_ALIAS: ${{ secrets.SIGNING_KEY_ALIAS }}
SIGNING_KEY_PASSWORD: ${{ secrets.SIGNING_KEY_PASSWORD }}
SIGNING_STORE_PASSWORD: ${{ secrets.SIGNING_STORE_PASSWORD }}

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@
.externalNativeBuild
.cxx
local.properties
keystore

0 comments on commit d163723

Please sign in to comment.