This repository was archived by the owner on Jul 28, 2025. It is now read-only.
暗色模式判断屏幕状态 (#5) #70
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: Android CI | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup JDK | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'zulu' | |
| java-version: 17 | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v4 | |
| - name: Build with Gradle | |
| run: | | |
| echo ${{ secrets.SIGNING_KEY }} | base64 -d > keystore.jks | |
| ./gradlew assemble | |
| env: | |
| KEYSTORE_PATH: "../keystore.jks" | |
| KEYSTORE_PASS: ${{ secrets.KEY_STORE_PASSWORD }} | |
| KEY_ALIAS: ${{ secrets.ALIAS }} | |
| KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }} | |
| - name: Upload Release Snapshot | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: MediaControl-Release-Snapshot | |
| path: app/build/outputs/apk/release | |
| compression-level: 9 | |
| - name: Upload Debug Snapshot | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: MediaControl-Debug-Snapshot | |
| path: app/build/outputs/apk/debug | |
| compression-level: 9 | |
| - name: Post to Telegram ci channel | |
| if: ${{ success() && github.event_name != 'pull_request' && github.ref == 'refs/heads/main' && github.ref_type != 'tag' }} | |
| env: | |
| CHANNEL_ID: ${{ secrets.CHANNEL_ID }} | |
| BOT_TOKEN: ${{ secrets.BOT_TOKEN }} | |
| run: | | |
| if [ ! -z "${{ secrets.BOT_TOKEN }}" ]; then | |
| export RELEASE=$(find "app/build/outputs/apk/release/" -name "*.apk") | |
| export DEBUG=$(find "app/build/outputs/apk/debug/" -name "*.apk") | |
| event_path=$GITHUB_EVENT_PATH | |
| commit_count=$(jq -r '.commits | length' $event_path) | |
| { echo -e 'New CI from MediaControl-BlurBg\n'; git log -$commit_count --pretty=format:"%h %s"; } > ${{ github.workspace }}/git_log | |
| ESCAPED="$(cat ${{ github.workspace }}/git_log | gawk '{gsub(/[_*[\]()~`>#+=\|{}.!-]/,"\\\\\\\\&")}1' | sed -e 's|"|\\"|g' -e 's|^[0-9a-z]\+|__&__|' | hexdump -v -e '/1 "%02X"' | sed 's/\(..\)/%\1/g')" | |
| cd ${{ github.workspace }} | |
| curl -v "https://api.telegram.org/bot${BOT_TOKEN}/sendMediaGroup?chat_id=${CHANNEL_ID}&media=%5B%7B%22type%22%3A%22document%22%2C%22media%22%3A%22attach%3A%2F%2Frelease%22%7D%2C%7B%22type%22%3A%22document%22%2C%22media%22%3A%22attach%3A%2F%2Fdebug%22%2C%22caption%22%3A%22${ESCAPED}%22%2C%22parse_mode%22%3A%22MarkdownV2%22%7D%5D" -F release="@$RELEASE" -F debug="@$DEBUG" | |
| fi |