We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 956be28 commit 79220a4Copy full SHA for 79220a4
1 file changed
.github/workflows/release.yml
@@ -51,13 +51,13 @@ jobs:
51
- name: Verify signature
52
run: |
53
${{env.ANDROID_SDK_ROOT}}/build-tools/${{ env.BUILD_TOOLS_VERSION }}/apksigner verify --verbose --print-certs "${{ steps.buildapp.outputs.apk }}"
54
+ - name: Copy APK to ${{ env.APK_SHORT_NAME }}
55
+ run: |
56
+ cp "${{ steps.buildapp.outputs.apk }}" "${{ env.APK_SHORT_NAME }}"
57
- name: Checksums
58
59
echo "SHA256 checksums:"
60
sha256sum "${{ steps.buildapp.outputs.apk }}" "${{ env.APK_SHORT_NAME }}"
- - name: Copy APK to ${{ env.APK_SHORT_NAME }}
- run: |
- cp "${{ steps.buildapp.outputs.apk }}" "${{ env.APK_SHORT_NAME }}"
61
- name: Create GitHub release
62
uses: ncipollo/release-action@v1
63
with:
0 commit comments