Skip to content

Commit a1640d7

Browse files
chore(release): 11.1.1
1 parent e805810 commit a1640d7

File tree

3 files changed

+26
-3
lines changed

3 files changed

+26
-3
lines changed

.github/workflows/base.yaml

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,27 @@ jobs:
8181
working-directory: example
8282

8383
deployment:
84+
# Don't use because need generate l10n before publish
85+
# uses: flutter-form-builder-ecosystem/.github/.github/workflows/deployment.yaml@main
8486
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
8689
permissions:
8790
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

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 11.1.1
4+
5+
- Fix issue when build fails due to missing l10n files
6+
37
## 11.1.0
48

59
- Add Latvian language support

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: form_builder_validators
22
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
44
repository: https://github.com/flutter-form-builder-ecosystem/form_builder_validators
55
issue_tracker: https://github.com/flutter-form-builder-ecosystem/form_builder_validators/issues
66
homepage: https://github.com/flutter-form-builder-ecosystem

0 commit comments

Comments
 (0)