From e0b9b8ec9e7c11905bea8b5b21a2653eaeafd734 Mon Sep 17 00:00:00 2001 From: Brad Corso Date: Wed, 29 Nov 2023 14:45:18 -0800 Subject: [PATCH] Update release script to include changes to `artifact-android-local-tests`. These changes were added to the continuous integration (presubmit) script but we forgot to propagate it to the release script. RELNOTES=N/A PiperOrigin-RevId: 586459523 --- .github/workflows/release.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 029e8f9da98..93b189c849a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -63,12 +63,19 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - agp: ['7.0.0', '7.1.2'] + include: + - agp: '7.0.0' + jdk: '11' + - agp: '7.1.2' + jdk: '11' + - agp: '8.1.0' + jdk: '17' steps: - uses: actions/checkout@v3 - uses: ./.github/actions/artifact-android-local-tests with: agp: '${{ matrix.agp }}' + jdk: '${{ matrix.jdk }}' publish-artifacts: name: 'Publish Artifact' needs: [bazel-test, artifact-java-local-tests, artifact-android-local-tests, test-gradle-plugin]