[ci] Roll repo tool to 0.13.0 (#2831)

Picks up rename of the command to create an app that bulids all packages
together.
diff --git a/.ci/scripts/build_all_packages_app.sh b/.ci/scripts/build_all_packages_app.sh
index 008dea7..7341946 100644
--- a/.ci/scripts/build_all_packages_app.sh
+++ b/.ci/scripts/build_all_packages_app.sh
@@ -3,6 +3,6 @@
 # Use of this source code is governed by a BSD-style license that can be
 # found in the LICENSE file.
 
-cd all_plugins
+cd all_packages
 flutter build windows --debug
 flutter build windows --release
diff --git a/.ci/scripts/create_all_packages_app.sh b/.ci/scripts/create_all_packages_app.sh
index 90b6380..8c45a35 100644
--- a/.ci/scripts/create_all_packages_app.sh
+++ b/.ci/scripts/create_all_packages_app.sh
@@ -3,5 +3,5 @@
 # Use of this source code is governed by a BSD-style license that can be
 # found in the LICENSE file.
 
-dart pub global run flutter_plugin_tools all-plugins-app \
+dart pub global run flutter_plugin_tools create-all-packages-app \
     --output-dir=. --exclude script/configs/exclude_all_packages_app.yaml
diff --git a/.ci/scripts/prepare_tool.sh b/.ci/scripts/prepare_tool.sh
index a4a364d..6ab8dbc 100755
--- a/.ci/scripts/prepare_tool.sh
+++ b/.ci/scripts/prepare_tool.sh
@@ -8,4 +8,4 @@
 
 # Pinned version of the plugin tools, to avoid breakage in this repository
 # when pushing updates from flutter/plugins.
-dart pub global activate flutter_plugin_tools 0.12.1
+dart pub global activate flutter_plugin_tools 0.13.0
diff --git a/.cirrus.yml b/.cirrus.yml
index 8443fdb..0a2bb3c 100644
--- a/.cirrus.yml
+++ b/.cirrus.yml
@@ -66,16 +66,16 @@
 # together. See script/configs/exclude_all_packages_app.yaml for exceptions.
 build_all_packages_app_template: &BUILD_ALL_PACKAGES_APP_TEMPLATE
   create_all_packages_app_script:
-    - $PLUGIN_TOOL_COMMAND all-plugins-app --output-dir=. --exclude script/configs/exclude_all_packages_app.yaml
+    - $PLUGIN_TOOL_COMMAND create-all-packages-app --output-dir=. --exclude script/configs/exclude_all_packages_app.yaml
   build_all_packages_debug_script:
-    - cd all_plugins
+    - cd all_packages
     - if [[ "$BUILD_ALL_ARGS" == "web" ]]; then
     -   echo "Skipping; web does not support debug builds"
     - else
     -   flutter build $BUILD_ALL_ARGS --debug
     - fi
   build_all_packages_release_script:
-    - cd all_plugins
+    - cd all_packages
     - flutter build $BUILD_ALL_ARGS --release
 
 # Light-workload Linux tasks.
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 985aa46..94baf4a 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -31,7 +31,7 @@
       with:
         fetch-depth: 0 # Fetch all history so the tool can get all the tags to determine version.
     - name: Set up tools
-      run: dart pub global activate flutter_plugin_tools 0.12.1
+      run: dart pub global activate flutter_plugin_tools 0.13.0
 
     # # This workflow should be the last to run. So wait for all the other tests to succeed.
     - name: Wait on all tests