feat: add auto release

This commit is contained in:
Stefan Zollinger
2024-04-10 14:52:12 +02:00
parent bf7722747e
commit 7311ba335f

View File

@@ -50,3 +50,8 @@ jobs:
with: with:
name: signed_apk name: signed_apk
path: ${{steps.sign.outputs.signedReleaseFile}} path: ${{steps.sign.outputs.signedReleaseFile}}
- name: Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: ${{steps.sign.outputs.signedReleaseFile}}