From c0eb02ea6d42800c08099fa2057a16fbca195978 Mon Sep 17 00:00:00 2001 From: Horis <8674809+821938089@users.noreply.github.com> Date: Wed, 24 Jul 2024 13:38:50 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index db4c4bde4..4bec5c5e5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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' }}