Skip to content

[feature] Automatically switch-on Roots tab on first root pinned. #65

[feature] Automatically switch-on Roots tab on first root pinned.

[feature] Automatically switch-on Roots tab on first root pinned. #65

Workflow file for this run

name: Build the components
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
if: ${{ ! startsWith(github.actor, 'dependabot') }}
environment: Development
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'adopt'
cache: gradle
- name: Validate Gradle wrapper
uses: gradle/[email protected]
- name: Decrypt the keystore for signing
run: |
echo "${{ secrets.KEYSTORE_ENCRYPTED }}" > keystore.asc
gpg -d --passphrase "${{ secrets.KEYSTORE_PASSWORD }}" --batch keystore.asc > keystore.jks
- name: Build components
run: ./gradlew assembleRelease
- name: Build release sample APK
run: ./gradlew sample:assembleRelease
- name: Upload release APK
uses: actions/upload-artifact@v3
with:
name: release-universal-apk
path: ./sample/build/outputs/apk/release/sample-release.apk