diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2023-07-13 23:34:28 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-13 23:34:28 +0530 |
commit | ab798d75bb5e5a5f9b825acd482e6ab877d93b91 (patch) | |
tree | 524e457db7461deb39106951795737d03ab8bb04 /.github/workflows/deploy_library_releases.yml | |
parent | 7675641b1da19eaa7057b59a5e40ba473d047af1 (diff) |
fix(ci): remove build-tools workaround
No longer necessary since AGP now uses build-tools 34.0.0
Diffstat (limited to '.github/workflows/deploy_library_releases.yml')
-rw-r--r-- | .github/workflows/deploy_library_releases.yml | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/.github/workflows/deploy_library_releases.yml b/.github/workflows/deploy_library_releases.yml index 2751d659..a4437f07 100644 --- a/.github/workflows/deploy_library_releases.yml +++ b/.github/workflows/deploy_library_releases.yml @@ -11,21 +11,6 @@ jobs: - name: Checkout repository uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 - - 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" >> "${GITHUB_OUTPUT}" - - - name: Cache build-tools - uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3 - with: - path: ${{ steps.build-tools-path.outputs.dir }} - key: ${{ runner.os }}-34.0.0 - - name: Set up JDK uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0 with: |