legado/.github/workflows/test.yml

175 lines
6.2 KiB
YAML
Raw Normal View History

2022-01-03 23:59:44 +08:00
name: Test Build
on:
push:
2023-03-16 14:20:02 +08:00
branches:
- master
paths:
- '**'
- '!**/assets/**'
- '!**.md'
2022-11-14 07:37:19 +08:00
- '!**/ISSUE_TEMPLATE/**'
2023-04-07 21:47:12 +08:00
- '!**/modules/web/**'
pull_request:
paths-ignore:
- '**/modules/web/**'
2022-01-03 23:59:44 +08:00
workflow_dispatch:
2022-01-03 23:59:44 +08:00
jobs:
2023-03-08 07:21:48 +08:00
2022-01-03 23:59:44 +08:00
prepare:
runs-on: ubuntu-latest
2023-03-11 12:40:34 +08:00
if: ${{ !startsWith(github.event.head_commit.message, 'Merge pull request') }}
2022-01-03 23:59:44 +08:00
outputs:
version: ${{ steps.set-ver.outputs.version }}
versionL: ${{ steps.set-ver.outputs.versionL }}
lanzou: ${{ steps.check.outputs.lanzou }}
telegram: ${{ steps.check.outputs.telegram }}
steps:
- id: set-ver
run: |
echo "version=$(date -d "8 hour" -u +3.%y.%m%d%H)" >> $GITHUB_OUTPUT
echo "versionL=$(date -d "8 hour" -u +3.%y.%m%d%H%M)" >> $GITHUB_OUTPUT
- id: check
run: |
if [ ${{ secrets.LANZOU_ID }} ]; then
echo "lanzou=yes" >> $GITHUB_OUTPUT
fi
if [ ${{ secrets.BOT_TOKEN }} ]; then
echo "telegram=yes" >> $GITHUB_OUTPUT
fi
2022-01-03 23:59:44 +08:00
build:
needs: prepare
strategy:
matrix:
2023-03-31 13:54:07 +08:00
product: [ app, google, lollipop ]
type: [ release, releaseA ]
2022-01-03 23:59:44 +08:00
fail-fast: false
runs-on: ubuntu-latest
env:
product: ${{ matrix.product }}
type: ${{ matrix.type }}
VERSION: ${{ needs.prepare.outputs.version }}
VERSIONL: ${{ needs.prepare.outputs.versionL }}
steps:
- uses: actions/checkout@v3
2023-03-09 10:44:14 +08:00
with:
fetch-depth: 0
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 17
2022-01-03 23:59:44 +08:00
- name: Clear 18PlusList.txt
run: |
echo "清空18PlusList.txt"
echo "">$GITHUB_WORKSPACE/app/src/main/assets/18PlusList.txt
- name: Release Apk Sign
run: |
echo "给apk增加签名"
cp $GITHUB_WORKSPACE/.github/workflows/legado.jks $GITHUB_WORKSPACE/app/legado.jks
sed '$a\RELEASE_STORE_FILE=./legado.jks' $GITHUB_WORKSPACE/gradle.properties -i
sed '$a\RELEASE_KEY_ALIAS=legado' $GITHUB_WORKSPACE/gradle.properties -i
sed '$a\RELEASE_STORE_PASSWORD=gedoor_legado' $GITHUB_WORKSPACE/gradle.properties -i
sed '$a\RELEASE_KEY_PASSWORD=gedoor_legado' $GITHUB_WORKSPACE/gradle.properties -i
- name: Set up Gradle
uses: gradle/gradle-build-action@v2
2022-01-03 23:59:44 +08:00
- name: Build With Gradle
run: |
if [ ${{ env.type }} == 'release' ]; then
typeName="原包名"
else
typeName="共存"
sed "s/'.release'/'.releaseA'/" $GITHUB_WORKSPACE/app/build.gradle -i
sed 's/.release/.releaseA/' $GITHUB_WORKSPACE/app/google-services.json -i
fi
echo "统一版本号"
sed "/def version/c def version = \"${{ env.VERSION }}\"" $GITHUB_WORKSPACE/app/build.gradle -i
echo "开始${{ env.product }}$typeName构建"
chmod +x gradlew
./gradlew assemble${{ env.product }}release --build-cache --parallel --daemon --warning-mode all
echo "修改文件名"
mkdir -p ${{ github.workspace }}/apk/
for file in `ls ${{ github.workspace }}/app/build/outputs/apk/*/*/*.apk`; do
mv "$file" ${{ github.workspace }}/apk/legado_${{ env.product }}_${{ env.VERSIONL }}_$typeName.apk
done
- name: Upload App To Artifact
uses: actions/upload-artifact@v3
2022-01-03 23:59:44 +08:00
with:
name: legado.${{ env.product }}.${{ env.type }}
path: ${{ github.workspace }}/apk/*.apk
lanzou:
needs: [ prepare, build ]
2022-06-30 09:56:29 +08:00
if: ${{ github.event_name != 'pull_request' && needs.prepare.outputs.lanzou == 'yes' }}
2022-01-03 23:59:44 +08:00
runs-on: ubuntu-latest
env:
# 登录蓝奏云后在控制台运行document.cookie
ylogin: ${{ secrets.LANZOU_ID }}
phpdisk_info: ${{ secrets.LANZOU_PSD }}
# 蓝奏云里的文件夹ID阅读3测试版:2670621
LANZOU_FOLDER_ID: '2670621'
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
2022-01-03 23:59:44 +08:00
with:
path: apk/
- working-directory: apk/
run: mv */*.apk . ;rm -rf */
- name: Upload To Lanzou
continue-on-error: true
run: |
path="$GITHUB_WORKSPACE/apk/"
python3 $GITHUB_WORKSPACE/.github/scripts/lzy_web.py "$path" "$LANZOU_FOLDER_ID"
echo "[$(date -u -d '+8 hour' '+%Y.%m.%d %H:%M:%S')] 分享链接: https://kunfei.lanzoux.com/b0f810h4b"
test_Branch:
needs: [ prepare, build ]
2022-01-03 23:59:44 +08:00
runs-on: ubuntu-latest
2022-06-30 09:56:29 +08:00
if: ${{ github.event_name != 'pull_request' && github.actor == 'gedoor' }}
2022-01-03 23:59:44 +08:00
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
2022-01-03 23:59:44 +08:00
with:
path: apk/
- working-directory: apk/
run: mv */*.apk . ;rm -rf */
- name: Push To "test" Branch
run: |
cd $GITHUB_WORKSPACE/apk/
git init
git checkout -b test
2022-01-07 11:54:26 +08:00
git config --global user.name "github-actions[bot]"
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
2022-02-13 12:41:59 +08:00
git remote add origin "https://${{ github.actor }}:${{ secrets.ACTIONS_TOKEN }}@github.com/${{ github.actor }}/release"
2022-01-03 23:59:44 +08:00
git add *.apk
git commit -m "${{ needs.prepare.outputs.versionL }}"
git push -f -u origin test
telegram:
needs: [ prepare, build ]
2022-06-30 09:56:29 +08:00
if: ${{ github.event_name != 'pull_request' && needs.prepare.outputs.telegram == 'yes' }}
2022-01-03 23:59:44 +08:00
runs-on: ubuntu-latest
env:
CHANNEL_ID: ${{ secrets.CHANNEL_ID }}
BOT_TOKEN: ${{ secrets.BOT_TOKEN }}
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
2022-01-03 23:59:44 +08:00
with:
path: apk/
- working-directory: apk/
run: |
for file in `ls */*.apk`; do
mv "$file" "$(echo "$file"|sed -e 's#.*\/##g' -e "s/_/ /g" -e 's/legado/阅读/')"
done
rm -rf */
- name: Post to channel
run: |
pip install pyTelegramBotAPI
path="$GITHUB_WORKSPACE/apk/"
python3 $GITHUB_WORKSPACE/.github/scripts/tg_bot.py "$BOT_TOKEN" "$CHANNEL_ID" "$path"