-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: issues on pub.dev lowering the package scores * feat: add github action for melos publish * refactor: improve workflow name
- Loading branch information
Showing
7 changed files
with
45 additions
and
6 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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: Publish Flutter Packages | ||
|
||
on: workflow_dispatch | ||
|
||
permissions: | ||
contents: write | ||
pull-requests: write | ||
id-token: write | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
publish-packages: | ||
name: Publish Flutter Packages | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: subosito/flutter-action@v2 | ||
with: | ||
channel: stable | ||
flutter-version: 3.22.1 | ||
- uses: bluefireteam/melos-action@v3 | ||
with: | ||
run-versioning: true | ||
publish-dry-run: true | ||
publish: true | ||
create-pr: true | ||
git-email: [email protected] | ||
git-name: "Melos Action" |
2 changes: 1 addition & 1 deletion
2
catalyst_voices_packages/catalyst_cardano/catalyst_cardano/pubspec.yaml
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
4 changes: 4 additions & 0 deletions
4
...st_voices_packages/catalyst_cardano/catalyst_cardano_platform_interface/example/main.dart
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
void main() { | ||
// ignore: avoid_print | ||
print('Example is located in catalyst_cardano/example directory.'); | ||
} |
4 changes: 4 additions & 0 deletions
4
catalyst_voices_packages/catalyst_cardano/catalyst_cardano_web/example/main.dart
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
void main() { | ||
// ignore: avoid_print | ||
print('Example is located in catalyst_cardano/example directory.'); | ||
} |
2 changes: 1 addition & 1 deletion
2
catalyst_voices_packages/catalyst_cardano/catalyst_cardano_web/pubspec.yaml
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
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
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