We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef39b2d commit 7e48f5fCopy full SHA for 7e48f5f
1 file changed
.github/workflows/build.yaml
@@ -174,6 +174,7 @@ jobs:
174
run: flutter build apk --release --build-number=${{ github.run_number }}
175
176
- name: Sign APK
177
+ id: sign_apk
178
uses: r0adkll/sign-android-release@v1
179
with:
180
releaseDirectory: client/build/app/outputs/flutter-apk
@@ -187,7 +188,7 @@ jobs:
187
188
# if: startsWith(github.ref, 'refs/tags/')
189
190
name: android-app-apk
- path: "client/build/app/outputs/flutter-apk/app-release.apk"
191
+ path: ${{ steps.sign_apk.outputs.signedReleaseFile }}
192
retention-days: 2
193
194
# release:
0 commit comments