Skip to content

Commit

Permalink
[fix]: maybe now?
Browse files Browse the repository at this point in the history
  • Loading branch information
F0x1d committed Jul 6, 2024
1 parent ee9492c commit 7da401b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,12 @@ jobs:
with:
name: logfox-release

- name: Get the latest commit message
id: get_commit_msg
run: |
commit_message=$(git log -1 --pretty=format:'%s')
echo "::set-output name=message::$commit_message"
- name: Send APK to Telegram
uses: appleboy/telegram-action@master
with:
Expand All @@ -67,4 +73,4 @@ jobs:
*${{ github.actor }}* committed to *${{ github.repository }}*
Branch: *${{ github.head_ref }}*
Commit message: `${{ github.event.pull_request.head.label }}`
Commit message: `${{ steps.get_commit_msg.outputs.message }}`
2 changes: 1 addition & 1 deletion .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ jobs:
cache: 'gradle'

- name: Run tests
run: bash ./gradlew testDebugUnitTest -Proborazzi.test.verify=true
run: bash ./gradlew verifyRoborazziDebug

0 comments on commit 7da401b

Please sign in to comment.