diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c2a2b4f8..41cdca39 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -39,7 +39,7 @@ jobs: - uses: actions/upload-artifact@v4 with: - name: app-test-artifact + name: apk path: | app/build/outputs/apk/debug/app-debug.apk app/build/outputs/apk/androidTest/debug/app-debug-androidTest.apk diff --git a/.github/workflows/device-tests.yml b/.github/workflows/device-tests.yml index c8352347..7d73cdc7 100644 --- a/.github/workflows/device-tests.yml +++ b/.github/workflows/device-tests.yml @@ -14,7 +14,6 @@ jobs: steps: - uses: actions/download-artifact@v4 with: - name: app-test-artifact run-id: ${{github.event.workflow_run.id }} - name: Decode Firebase Service Account JSON @@ -25,7 +24,7 @@ jobs: gcloud auth login --cred-file=service_account.json gcloud config set project vocable-fcb07 gcloud firebase test android run \ - --app app-debug.apk \ - --test app-debug-androidTest.apk \ + --app apk/app-debug.apk \ + --test apk/app-debug-androidTest.apk \ --device version=34,orientation=portrait,model=MediumPhone.arm,locale=en_US \ --test-runner-class com.willowtree.vocable.utility.VocableTestRunner \ No newline at end of file