repo_pub_server 1.1.0
repo_pub_server: ^1.1.0 copied to clipboard
Builds a static pub server from the package you develop, enabling you to provide continuous delivery of your bleeding edge dart package builds.
repo_pub_server #
Builds a static pub server from the package you develop, enabling you to provide continuous delivery of your bleeding edge dart package builds.
Getting started #
- Globally install
repo_pub_server
to your CI environment - Install
git
andgzip
on your environment - Add the example code to your CI/CD configuration
Example code #
# ensure you added the dev_dependency
flutter pub global activate repo_pub_server
cd path/to/your/package
repo_pub_server https://your-final-serving-url.tld/ /directory/to/build/at
How it works #
repo_pub_server
uses git to find all tags. Based on the versions and the corresponding pubspec files, a static
dart package repository is being built.