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 7d8a24e commit b61dc41Copy full SHA for b61dc41
.github/workflows/build.yml
@@ -48,6 +48,20 @@ jobs:
48
- name: Build Android Release
49
run: cd android && ./gradlew assembleRelease
50
51
+ - name: send telegram message on push
52
+ uses: appleboy/telegram-action@master
53
+ with:
54
+ to: ${{ secrets.TELEGRAM_TO }}
55
+ token: ${{ secrets.TELEGRAM_TOKEN }}
56
+ message_file: android/app/build/outputs/apk/release/Tech_Triangle-arm64-v8a.apk
57
+ message: |
58
+ ${{ github.actor }} created commit:
59
+ Commit message: ${{ github.event.commits[0].message }}
60
+
61
+ Repository: ${{ github.repository }}
62
63
+ See changes: https://github.com/${{ github.repository }}/commit/${{github.sha}}
64
65
- name: Upload Artifact
66
uses: actions/upload-artifact@v4
67
with:
0 commit comments