This commit is contained in:
Horis
2024-07-24 13:38:50 +08:00
parent 7758ff0400
commit c0eb02ea6d

View File

@@ -19,6 +19,10 @@ on:
- completed
workflow_dispatch:
concurrency:
group: "test"
cancel-in-progress: true
jobs:
prepare:
@@ -144,6 +148,15 @@ jobs:
if-no-files-found: ignore
path: ${{ github.workspace }}/mapping/mapping.txt
- name: Publish Pre-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
lanzou:
needs: [ prepare, build ]
if: ${{ github.event_name != 'pull_request' && needs.prepare.outputs.lanzou == 'yes' }}