Update v2.0.3 #287
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
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- 'master' | |
env: | |
KEY_STORE_PASSWORD: ${{ secrets.KEY_STORE_PASSWORD }} | |
ALIAS: ${{ secrets.ALIAS }} | |
KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }} | |
jobs: | |
build: | |
name: Build APK | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup JDK | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 17 | |
distribution: oracle | |
cache: 'gradle' | |
- name: Checkout keystore repository | |
uses: actions/checkout@v4 | |
with: | |
repository: ${{ secrets.KEYSTORE_GIT_REPOSITORY }} | |
token: ${{ secrets.KEYSTORE_ACCESS_TOKEN }} | |
path: app/keystore | |
- name: Build APK | |
run: bash ./gradlew assembleRelease --stacktrace --no-daemon | |
- name: Upload APK | |
uses: actions/upload-artifact@v4 | |
with: | |
name: logfox-release | |
compression-level: 0 | |
path: app/build/outputs/apk/release/app-release.apk | |
send: | |
name: Send APK | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
- name: Get the last commit message | |
id: get_commit_msg | |
run: | | |
commit_message=$(git log -1 --pretty=format:'%s') | |
echo "::set-output name=message::$commit_message" | |
- name: Download APK | |
uses: actions/download-artifact@v4 | |
with: | |
name: logfox-release | |
- name: Send APK to Telegram | |
uses: appleboy/telegram-action@master | |
with: | |
to: ${{ secrets.TELEGRAM_TO }} | |
token: ${{ secrets.TELEGRAM_TOKEN }} | |
format: markdown | |
document: app-release.apk | |
disable_web_page_preview: true | |
message: | | |
*${{ github.actor }}* committed to *${{ github.repository }}* | |
Branch: *${{ github.head_ref }}* | |
Commit message: `${{ steps.get_commit_msg.outputs.message }}` |