diff options
Diffstat (limited to '.github/workflows/draft_new_release.yml')
-rw-r--r-- | .github/workflows/draft_new_release.yml | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/.github/workflows/draft_new_release.yml b/.github/workflows/draft_new_release.yml index a0de05f2..c068a144 100644 --- a/.github/workflows/draft_new_release.yml +++ b/.github/workflows/draft_new_release.yml @@ -36,6 +36,21 @@ jobs: with: ref: ${{ env.CHECKOUT_REF }} + - name: Accept all SDK licenses + shell: bash + run: printf 'y\ny\ny\ny\ny\ny\n' | $ANDROID_HOME/tools/bin/sdkmanager --licenses + + - name: Get build-tools directory + id: build-tools-path + shell: bash + run: echo "dir=${ANDROID_HOME}/build-tools/34.0.0-rc3" >> "${GITHUB_OUTPUT}" + + - name: Cache build-tools + uses: actions/cache@v3 + with: + path: ${{ steps.build-tools-path.outputs.dir }} + key: ${{ runner.os }}-34.0.0-rc3 + - name: Set up JDK uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0 with: @@ -52,10 +67,6 @@ jobs: with: gradle-home-cache-cleanup: true - - name: Accept all SDK licenses - shell: bash - run: printf 'y\ny\ny\ny\ny\n' | $ANDROID_HOME/tools/bin/sdkmanager --licenses - - name: Initialize git config and commit changes shell: bash run: | |