diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2023-07-09 18:06:12 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2023-07-09 18:06:12 +0530 |
commit | 227a2bf1748752f5916d98dda10f65600278054b (patch) | |
tree | db149474c9483513af30618a56685133b11dc72a /.github/workflows/deploy_library_releases.yml | |
parent | 7435842bd99faa5a3f66e62d2907a4206a82c3b2 (diff) |
fix(ci): update to build-tools 34.0.0
Diffstat (limited to '.github/workflows/deploy_library_releases.yml')
-rw-r--r-- | .github/workflows/deploy_library_releases.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/deploy_library_releases.yml b/.github/workflows/deploy_library_releases.yml index 85e1d53c..0060758b 100644 --- a/.github/workflows/deploy_library_releases.yml +++ b/.github/workflows/deploy_library_releases.yml @@ -18,13 +18,13 @@ jobs: - name: Get build-tools directory id: build-tools-path shell: bash - run: echo "dir=${ANDROID_HOME}/build-tools/34.0.0-rc3" >> "${GITHUB_OUTPUT}" + 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-rc3 + key: ${{ runner.os }}-34.0.0 - name: Set up JDK uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0 |