diff --git a/.github/workflows/publish_release.yml b/.github/workflows/publish_release.yml index 6a55534d..e2ce1c34 100644 --- a/.github/workflows/publish_release.yml +++ b/.github/workflows/publish_release.yml @@ -37,6 +37,6 @@ jobs: SIGNING_SECRET_KEY_RING_FILE: ${{ secrets.SIGNING_SECRET_KEY_RING_FILE }} run: sudo bash -c "echo '$GPG_KEY_CONTENTS' | base64 -d > '$SIGNING_SECRET_KEY_RING_FILE'" - - run: ./gradlew publish + - run: ./gradlew publish --continue | true - run: ./gradlew publishPlugins diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 5176f25e..a1c0cb7b 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -141,8 +141,8 @@ jobs: - name: Install dependencies run: | - python -m pip install --upgrade pip - python -m pip install 'Pillow==9.1.1' + python3 -m pip install --upgrade pip + python3 -m pip install 'Pillow==9.1.1' - name: run tests uses: reactivecircus/android-emulator-runner@v2 @@ -156,8 +156,6 @@ jobs: adb shell settings put global hidden_api_policy_p_apps 1 adb shell settings put global hidden_api_policy_pre_p_apps 1 adb shell settings put global hidden_api_policy 1 - python -m pip show Pillow - python -m pip show Pillow cd sample && ./gradlew verifyDebugAndroidTestScreenshotTest - name: Upload screenshot tests result diff --git a/sample/android/build.gradle b/sample/android/build.gradle index 2062d196..14ef653e 100644 --- a/sample/android/build.gradle +++ b/sample/android/build.gradle @@ -12,6 +12,7 @@ android { } } screenshots { + pythonExecutable "python3" failureDir "$buildDir/reports/failedScreenshots" }