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' }}