Skip to content

Restructure ark-android repository #45

Restructure ark-android repository

Restructure ark-android repository #45

name: Build filepicker module
on:
push:
branches: [ main ]
paths:
- filepicker/**
pull_request:
branches:
- main
paths:
- "filepicker/*"
jobs:
build:
if: ${{ ! startsWith(github.actor, "dependabot') }}

Check failure on line 17 in .github/workflows/build_filepicker.yml

View workflow run for this annotation

GitHub Actions / Build filepicker module

Invalid workflow file

The workflow is not valid. .github/workflows/build_filepicker.yml (Line: 17, Col: 9): The expression is not closed. An unescaped ${{ sequence was found, but the closing }} sequence was not found.
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 filepicker module
run: ./gradlew filepicker:assembleRelease
- name: Build release sample APK
run: ./gradlew sample:assembleRelease
- name: Upload release arm64-v8a APK
uses: actions/upload-artifact@v3
with:
name: release-arm64-v8a-apk
path: ./sample/build/outputs/apk/release/sample-arm64-v8a-release.apk
- name: Upload release armeabi-v7a APK
uses: actions/upload-artifact@v3
with:
name: release-armeabi-v7a-apk
path: ./sample/build/outputs/apk/release/sample-armeabi-v7a-release.apk
- name: Upload release universal APK
uses: actions/upload-artifact@v3
with:
name: release-universal-apk
path: ./sample/build/outputs/apk/release/sample-universal-release.apk