From 986dafbbb531d73de44dc9f5ebe18463fbb39014 Mon Sep 17 00:00:00 2001 From: overcat <4catcode@gmail.com> Date: Wed, 30 Aug 2023 19:38:14 +0800 Subject: [PATCH] remove "android-test" in deploy needs. --- .github/workflows/test-deploy.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-deploy.yml b/.github/workflows/test-deploy.yml index 95bbf1589..56488551e 100644 --- a/.github/workflows/test-deploy.yml +++ b/.github/workflows/test-deploy.yml @@ -74,6 +74,7 @@ jobs: fail-fast: false matrix: # minSdk and targetSdk, see ${project_root}/android_test/app/build.gradle.kts + # TODO: Investigate why it is unstable on API 33. api-level: [ 26, 33 ] steps: - name: checkout @@ -98,7 +99,7 @@ jobs: profile: 'pixel_2' deploy: - needs: [ javadoc, android-test ] + needs: [ javadoc, shadow_jar ] # TODO: add android-test when it is stable. permissions: contents: write if: github.event_name == 'release' && github.event.action == 'created'