We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88c2b77 commit 206356eCopy full SHA for 206356e
.github/workflows/snapshot-release.yml
@@ -48,6 +48,13 @@ jobs:
48
- name: Setup Gradle
49
uses: gradle/actions/setup-gradle@4d9f0ba0025fe599b4ebab900eb7f3a1d93ef4c2 # v5.0.0
50
51
+ - name: Setup build tool version variable
52
+ shell: bash
53
+ run: |
54
+ BUILD_TOOL_VERSION=$(ls /usr/local/lib/android/sdk/build-tools/ | tail -n 1)
55
+ echo "BUILD_TOOL_VERSION=$BUILD_TOOL_VERSION" >> $GITHUB_ENV
56
+ echo Last build tool version is: $BUILD_TOOL_VERSION
57
+
58
- name: Assemble F-Droid APK
59
run: ./gradlew :app:assembleFdroidRelease --stacktrace
60
env:
0 commit comments