This commit is contained in:
Horis
2024-07-24 14:03:22 +08:00
parent df192aa870
commit 0ae16e52da

View File

@@ -103,7 +103,7 @@ jobs:
echo "修改APK文件名"
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
cp "$file" ${{ github.workspace }}/apk/legado_${{ env.product }}_${{ env.VERSIONL }}_$typeName.apk
done
echo "移动mapping文件"
mkdir -p ${{ github.workspace }}/mapping/
@@ -149,13 +149,14 @@ jobs:
path: ${{ github.workspace }}/mapping/mapping.txt
- name: Publish Pre-Release
if: env.type == 'release'
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "beta"
prerelease: true
title: "Latest Beta Build"
files: ${{ github.workspace }}/apk/*.apk
files: ${{ github.workspace }}/app/build/outputs/apk/*/*/*.apk
lanzou:
needs: [ prepare, build ]