Implement OneDrive integration #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Android CI | |
on: | |
push: | |
branches: [ "master", "dev" ] | |
pull_request: | |
branches: [ "master", "dev" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: gradle | |
- name: Generate auth_config_single_account.json | |
run: | | |
mkdir ./app/src/main/res/raw | |
echo "${{ secrets.AUTH_CONFIG_SINGLE_ACCOUNT }}" > ./app/src/main/res/raw/auth_config_single_account.json | |
- name: Generate secrets.properties | |
run: | | |
echo "${{ secrets.SECRETS_PROPERTIES }}" > ./secrets.properties | |
- name: Generate keystore.properties | |
run: | | |
cat <<EOF > keystore.properties | |
storeFile:${{ vars.KEYSTORE_STORE_FILE_PATH }} | |
storePassword:${{ secrets.KEYSTORE_STORE_PASSWORD }} | |
keyAlias:${{ secrets.KEYSTORE_KEY_ALIAS }} | |
keyPassword:${{ secrets.KEYSTORE_KEY_PASSWORD }} | |
EOF | |
- name: Decode keystore and create jks | |
run: | | |
echo "${{ secrets.KEYSTORE_JKS }}" | base64 --decode > keystore.jks | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build with Gradle | |
run: ./gradlew assembleRelease | |
- name: Upload a Build Artifact | |
uses: actions/[email protected] | |
with: | |
name: files | |
path: ./app/build/outputs/apk/release/app-release.apk |