Skip to content

Commit

Permalink
GrindrPlus: Fix build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
R0rt1z2 committed Nov 17, 2024
1 parent 64120d9 commit a897296
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_apk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,15 +76,15 @@ jobs:
curl -F document=@"${{ env.DEBUG_APK }}" \
-F chat_id=${{ secrets.TELEGRAM_CHAT_ID }} \
-F parse_mode=Markdown \
-F caption="${{ env.VERSION_INFO }} (debug) | [${{ env.COMMIT_SHA }}](${{ env.COMMIT_URL }})" \
-F caption="$(echo ${{ env.VERSION_INFO }} \(release\) \| \[${{ env.COMMIT_SHA }}\]\(${{ env.COMMIT_URL }}\))" \
https://api.telegram.org/bot${{ secrets.TELEGRAM_BOT_TOKEN }}/sendDocument
- name: Upload Signed Release APK to Telegram
run: |
curl -F document=@"${{ env.RELEASE_APK }}" \
-F chat_id=${{ secrets.TELEGRAM_CHAT_ID }} \
-F parse_mode=Markdown \
-F caption="${{ env.VERSION_INFO }} (release) | [${{ env.COMMIT_SHA }}](${{ env.COMMIT_URL }})" \
-F caption="$(echo ${{ env.VERSION_INFO }} \(debug\) \| \[${{ env.COMMIT_SHA }}\]\(${{ env.COMMIT_URL }}\))" \
https://api.telegram.org/bot${{ secrets.TELEGRAM_BOT_TOKEN }}/sendDocument
- name: Upload Debug APK as Artifact
Expand Down

0 comments on commit a897296

Please sign in to comment.