diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7cff0b452..1ca1213a5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 ]