feat: add autospace after emoji setting #3
Workflow file for this run
This file contains hidden or 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: Build Release APKs | |
| on: | |
| workflow_dispatch: | |
| push: | |
| tags: | |
| - 'v*' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up JDK | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: '17' | |
| distribution: 'temurin' | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v3 | |
| - name: Decode Keystore | |
| env: | |
| RELEASE_KEYSTORE: ${{ secrets.RELEASE_KEYSTORE }} | |
| if: ${{ env.RELEASE_KEYSTORE != '' }} | |
| run: | | |
| echo "${{ secrets.RELEASE_KEYSTORE }}" | base64 -d > leantype-release.jks | |
| echo "keyAlias=${{ secrets.RELEASE_KEY_ALIAS }}" > keystore.properties | |
| echo "keyPassword=${{ secrets.RELEASE_KEY_PASSWORD }}" >> keystore.properties | |
| echo "storeFile=leantype-release.jks" >> keystore.properties | |
| echo "storePassword=${{ secrets.RELEASE_STORE_PASSWORD }}" >> keystore.properties | |
| - name: Grant execute permission for gradlew | |
| run: chmod +x gradlew | |
| - name: Build Release APKs | |
| run: ./gradlew assembleStandardRelease assembleStandardfullRelease assembleOfflineRelease assembleOfflineliteRelease | |
| - name: Generate Release Notes | |
| # ponytail: generate release notes from changelog during build | |
| run: python3 docs/scripts/generate_release_notes.py | |
| - name: Upload APKs and Release Notes | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: LeanType-Release-APKs | |
| path: | | |
| app/build/outputs/apk/**/*.apk | |
| docs/releasenote/release_notes_v*.md | |
| - name: Create GitHub Release | |
| uses: softprops/action-gh-release@v2 | |
| if: startsWith(github.ref, 'refs/tags/v') | |
| with: | |
| body_path: docs/releasenote/release_notes_temp.md | |
| files: | | |
| app/build/outputs/apk/standard/release/*.apk | |
| app/build/outputs/apk/standardfull/release/*.apk | |
| app/build/outputs/apk/offline/release/*.apk | |
| app/build/outputs/apk/offlinelite/release/*.apk |