Add dartdoc workaround

This commit is contained in:
zontreck 2025-03-22 09:43:23 -07:00
parent 1f7260c9cf
commit edca96f33f

7
Jenkinsfile vendored
View file

@ -27,7 +27,12 @@ pipeline {
flutter pub get
flutter pub publish -f --skip-validation || true
dart doc
# dart doc
# Workaround for dart doc being broken at the moment
dart pub global activate dartdoc
dart pub global run dartdoc
cd doc/api
tar -cvf ../../docs.tgz .
'''