Skip to content

Commit

Permalink
fix(ci): publish
Browse files Browse the repository at this point in the history
  • Loading branch information
j4qfrost committed Feb 28, 2024
1 parent c294adc commit 076fdf6
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
15 changes: 14 additions & 1 deletion melos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,20 @@ scripts:
fix:
run: melos exec --fail-fast --ignore "*common*" --ignore "*application*" --ignore "*dependency*" -- "dart fix --apply ."
sync-version:
run: melos exec -c1 --fail-fast --ignore "*common*" --ignore "*application*" --ignore "*dependency*" --ignore "*test_package*" -- melos version -V MELOS_PACKAGE_NAME:`dart pub deps -s list | grep conduit_workspace | awk '{print $2}' | grep -oE '[0-9]+\.[0-9]+\.[0-9]+'` --yes
run: |
export v=`dart pub deps -s list | grep conduit_workspace | awk '{print $2}' | grep -oE '[0-9]+\.[0-9]+\.[0-9]+'`; \
melos version --yes -V conduit:$v \
-V conduit_codable:$v \
-V conduit_common:$v \
-V conduit_config:$v \
-V conduit_core:$v \
-V conduit_isolate_exec:$v \
-V conduit_open_api:$v \
-V conduit_password_hash:$v \
-V conduit_postgresql:$v \
-V conduit_runtime:$v \
-V conduit_test:$v \
-V fs_test_agent:$v
environment:
sdk: ">=3.3.0 <4.0.0"

2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: conduit_workspace
version: 5.0.0
version: 5.0.1

environment:
sdk: '>=3.3.0 <4.0.0'
Expand Down

0 comments on commit 076fdf6

Please sign in to comment.