We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf6a614 commit 1371f6dCopy full SHA for 1371f6d
1 file changed
.github/workflows/release.yml
@@ -27,6 +27,12 @@ jobs:
27
- name: Build Release APK
28
run: ./gradlew assembleRelease
29
30
+ - name: Setup build tool version variable
31
+ shell: bash
32
+ run: |
33
+ BUILD_TOOL_VERSION=$(ls $ANDROID_SDK_ROOT/build-tools/ | tail -n 1)
34
+ echo "BUILD_TOOL_VERSION=$BUILD_TOOL_VERSION" >> $GITHUB_ENV
35
+
36
- name: Sign APK
37
uses: r0adkll/sign-android-release@v1
38
id: sign_app
@@ -36,6 +42,7 @@ jobs:
42
alias: ${{ secrets.ALIAS }}
43
keyStorePassword: ${{ secrets.KEY_STORE_PASSWORD }}
44
keyPassword: ${{ secrets.KEY_PASSWORD }}
45
+ buildToolsVersion: ${{ env.BUILD_TOOL_VERSION }}
39
46
40
47
- name: Create GitHub Release
41
48
uses: softprops/action-gh-release@v2
0 commit comments