Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ jobs:
if: github.event_name == 'push'
uses: actions/cache@v4
with:
path: diffuse-source-file
path: client-sdk-android/diffuse-source-file
key: diffuse-${{ github.sha }}

# Copy your build artifact under `diffuse-source-file` name which will be saved in cache
Expand Down Expand Up @@ -222,13 +222,13 @@ jobs:
- uses: actions/cache@v4
name: Download base source file for diffuse
with:
path: diffuse-source-file
path: client-sdk-android/diffuse-source-file
key: diffuse-${{ github.event.pull_request.base.sha }}

- id: diffuse
uses: usefulness/diffuse-action@v1
with:
old-file-path: diffuse-source-file
old-file-path: client-sdk-android/diffuse-source-file
new-file-path: client-sdk-android/livekit-android-sdk/build/outputs/aar/livekit-android-sdk-release.aar

# Consuming diffuse action output
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependency_diff.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
if: ${{ steps.dependency-diff.outputs.text-diff != null || steps.find_comment.outputs.comment-id != null }}
with:
body: |
Dependency diff (customize your message here):
Dependency diff:
```diff
${{ steps.dependency-diff.outputs.text-diff }}
```
Expand Down
Loading