Skip to content

Commit

Permalink
Fix flutter-pr.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Syutkin committed Oct 28, 2024
1 parent 57314d8 commit a53abae
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/flutter-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,6 @@ jobs:
lcov -r coverage/lcov.info -o coverage/lcov.info "lib/**.freezed.dart" "lib/**.g.dart" "lib/src/common/localization/**.dart" "test/**.mocks.dart"
- name: Upload to Codecov
uses: codecov/codecov-action@v3.1.0
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
14 changes: 7 additions & 7 deletions lib/src/constants/pubspec.yaml.g.dart
Original file line number Diff line number Diff line change
Expand Up @@ -93,13 +93,13 @@ sealed class Pubspec {
static const PubspecVersion version = (
/// Non-canonical string representation of the version as provided
/// in the pubspec.yaml file.
representation: r'0.5.0-alpha.1+280',
representation: r'0.5.0-alpha.1+281',

/// Returns a 'canonicalized' representation
/// of the application version.
/// This represents the version string in accordance with
/// Semantic Versioning (SemVer) standards.
canonical: r'0.5.0-alpha.1+280',
canonical: r'0.5.0-alpha.1+281',

/// MAJOR version when you make incompatible API changes.
/// The major version number: 1 in "1.2.3".
Expand All @@ -118,19 +118,19 @@ sealed class Pubspec {
preRelease: <String>[r'alpha', r'1'],

/// The build identifier: "foo" in "1.2.3+foo".
build: <String>[r'280'],
build: <String>[r'281'],
);

/// Build date and time (UTC)
static final DateTime timestamp = DateTime.utc(
2024,
10,
28,
10,
47,
11,
4,
44,
842,
421,
512,
291,
);

/// Name
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ repository: https://github.com/Syutkin/entime-mobile
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
# Read more about iOS versioning at
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
version: 0.5.0-alpha.1+280
version: 0.5.0-alpha.1+281

environment:
sdk: ^3.5.0
Expand Down

0 comments on commit a53abae

Please sign in to comment.