-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
9 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,6 +46,9 @@ jobs: | |
- name: Get Flutter dependencies in Core SDK | ||
run: flutter pub get | ||
working-directory: packages/hmssdk_flutter | ||
- name: Get Flutter dependencies in Room Kit SDK | ||
run: flutter pub get | ||
working-directory: packages/hms_room_kit | ||
- name: Dart Format | ||
run: dart format . | ||
- name: Dart Fix | ||
|
@@ -54,20 +57,12 @@ jobs: | |
uses: zgosalvez/github-actions-analyze-dart@v2 | ||
with: | ||
working-directory: packages/hmssdk_flutter | ||
- name: Check Publish Sanity for HMSSDK | ||
uses: sakebook/[email protected] | ||
with: | ||
credential: ${{ secrets.CREDENTIAL_JSON }} | ||
package_directory: packages/hmssdk_flutter | ||
skip_test: true | ||
dry_run: true | ||
- name: Check Publish Sanity for HMSSDK | ||
uses: sakebook/[email protected] | ||
with: | ||
credential: ${{ secrets.CREDENTIAL_JSON }} | ||
package_directory: packages/hms_room_kit | ||
skip_test: true | ||
dry_run: true | ||
- name: Check SDK Publish Sanity | ||
run: | | ||
cd packages/hmssdk_flutter | ||
flutter pub publish --dry-run | ||
cd ../hms_room_kit | ||
flutter pub publish --dry-run | ||
- name: Commit and Push changes | ||
uses: stefanzweifel/git-auto-commit-action@v5 | ||
with: | ||
|