File tree Expand file tree Collapse file tree 3 files changed +26
-3
lines changed Expand file tree Collapse file tree 3 files changed +26
-3
lines changed Original file line number Diff line number Diff line change 81
81
working-directory : example
82
82
83
83
deployment :
84
+ # Don't use because need generate l10n before publish
85
+ # uses: flutter-form-builder-ecosystem/.github/.github/workflows/deployment.yaml@main
84
86
if : ${{ github.ref_type == 'tag' }}
85
- uses : flutter-form-builder-ecosystem/.github/.github/workflows/deployment.yaml@main
87
+ needs : [build, example]
88
+ name : Deploy package
86
89
permissions :
87
90
id-token : write
88
- needs : [build, example]
91
+ runs-on : ubuntu-latest
92
+ steps :
93
+ - name : Checkout repository
94
+ uses : actions/checkout@v4
95
+ with :
96
+ fetch-depth : 1 # Use shallow clone for faster checkout
97
+ - name : Setup Flutter
98
+ uses : kuhnroyal/flutter-fvm-config-action/setup@v3
99
+ with :
100
+ path : ' .fvmrc'
101
+ flavor : ' stable'
102
+ - name : Install dependencies
103
+ run : dart pub get
104
+ - name : Run l10n
105
+ run : flutter gen-l10n
106
+ - name : Publish package
107
+ run : dart pub publish -v -f
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 11.1.1
4
+
5
+ - Fix issue when build fails due to missing l10n files
6
+
3
7
## 11.1.0
4
8
5
9
- Add Latvian language support
Original file line number Diff line number Diff line change 1
1
name : form_builder_validators
2
2
description : Form Builder Validators set of validators for FlutterFormBuilder. Provides common validators and a way to make your own.
3
- version : 11.1.0
3
+ version : 11.1.1
4
4
repository : https://github.com/flutter-form-builder-ecosystem/form_builder_validators
5
5
issue_tracker : https://github.com/flutter-form-builder-ecosystem/form_builder_validators/issues
6
6
homepage : https://github.com/flutter-form-builder-ecosystem
You can’t perform that action at this time.
0 commit comments