From fa828af7091552af6d477d0d041d8f951c309349 Mon Sep 17 00:00:00 2001 From: codeskyblue Date: Mon, 8 Apr 2024 18:14:03 +0800 Subject: [PATCH] fix workflow --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c6fc8f4..696a6bd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -41,6 +41,8 @@ jobs: mv app/build/outputs/apk/androidTest/debug/app-debug-androidTest.apk dist/app-uiautomator-test.apk - name: Publish APKs - run: gh release upload ${{ github.ref_name }} dist/* + run: | + gh release create ${{ github.ref_name }} --notes "release" + gh release upload ${{ github.ref_name }} dist/* env: GH_TOKEN: ${{ secrets.GH_TOKEN }}