diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 2633526..67c0893 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -35,3 +35,12 @@ jobs: with: name: maatouch path: ./maatouch + + - name: Release when tag is created + uses: softprops/action-gh-release@v1 + if: startsWith(github.ref, 'refs/tags/') + with: + files: ./maatouch + tag_name: ${{ github.ref_name }} + token: ${{ secrets.GITHUB_TOKEN }} + prerelease: true \ No newline at end of file