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
44 changes: 28 additions & 16 deletions .github/actions/pana/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,24 +22,36 @@ runs:
using: "composite"
steps:
- name: Temporary Override Local Dependencies
uses: mikefarah/yq@master
with:
cmd: |
# --- stream_video_flutter ---
yq eval '.dependencies.stream_video = {"path": "../stream_video"}' -i packages/stream_video_flutter/pubspec.yaml
yq eval '.dependency_overrides.stream_video = {"path": "../stream_video"}' -i packages/stream_video_flutter/pubspec.yaml
shell: bash
run: |
# Add dependency_overrides to use local paths instead of pub.dev versions
# This preserves the original YAML formatting by appending to files

# --- stream_video_flutter ---
cat >> packages/stream_video_flutter/pubspec.yaml << 'PUBSPEC_EOF'

dependency_overrides:
stream_video:
path: ../stream_video
PUBSPEC_EOF

# --- stream_video_push_notification ---
cat >> packages/stream_video_push_notification/pubspec.yaml << 'PUBSPEC_EOF'

dependency_overrides:
stream_video:
path: ../stream_video
stream_video_flutter:
path: ../stream_video_flutter
PUBSPEC_EOF

# --- stream_video_push_notification ---
yq eval '.dependencies.stream_video = {"path": "../stream_video"}' -i packages/stream_video_push_notification/pubspec.yaml
yq eval '.dependencies.stream_video_flutter = {"path": "../stream_video_flutter"}' -i packages/stream_video_push_notification/pubspec.yaml
yq eval '.dependency_overrides.stream_video = {"path": "../stream_video"}' -i packages/stream_video_push_notification/pubspec.yaml
yq eval '.dependency_overrides.stream_video_flutter = {"path": "../stream_video_flutter"}' -i packages/stream_video_push_notification/pubspec.yaml
# --- stream_video_noise_cancellation ---
cat >> packages/stream_video_noise_cancellation/pubspec.yaml << 'PUBSPEC_EOF'

# --- stream_video_noise_cancellation ---
yq eval '.dependencies.stream_video = {"path": "../stream_video"}' -i packages/stream_video_noise_cancellation/pubspec.yaml
yq eval '.dependencies.stream_video_flutter = {"path": "../stream_video_flutter"}' -i packages/stream_video_noise_cancellation/pubspec.yaml
yq eval '.dependency_overrides.stream_video = {"path": "../stream_video"}' -i packages/stream_video_noise_cancellation/pubspec.yaml
yq eval '.dependency_overrides.stream_video_flutter = {"path": "../stream_video_flutter"}' -i packages/stream_video_noise_cancellation/pubspec.yaml
dependency_overrides:
stream_video:
path: ../stream_video
PUBSPEC_EOF

- name: Install Flutter
uses: subosito/flutter-action@v2
Expand Down
175 changes: 0 additions & 175 deletions packages/stream_video/lib/protobuf/google/protobuf/duration.pb.dart

This file was deleted.

This file was deleted.

This file was deleted.

115 changes: 0 additions & 115 deletions packages/stream_video/lib/protobuf/google/protobuf/duration.proto

This file was deleted.

Loading