Skip to content

Commit 0e6fd06

Browse files
committed
Publish and release 3.0.1
1 parent 36cd94c commit 0e6fd06

File tree

5 files changed

+5
-14
lines changed

5 files changed

+5
-14
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# This GitHub action runs on pull request to master, it:
2-
#
32
# - Installs dart and flutter
43
# - Uses flutter stable channel. Might setup a matrix later with beta and dev included too.
54
# - Enables flutter web
@@ -19,19 +18,17 @@
1918
# - Use rpl to fix/modify the index.html file to give it the correct href deployment sub-folder.
2019
# - This CI/CD stops here, it does not deploy, that is done by the deploy workflow, that is otherwise identical,
2120
# but runs on release, when it is published, created or edited.
22-
#
2321
# TODO Maybe set this workflow up to also run on a weekly schedule to check that nothing is broken?
2422
# Also planning to setup a matrix test run, but this one is anyway a nice test
2523
# since it does not just runs tests, it also builds actual Web apps using the package.
26-
#
2724
name: Build Web
2825
on:
2926
#pull_request:
30-
# branches: [ none ]
27+
# branches: [none]
3128
push:
3229
branches: [none]
3330
# release:
34-
# types: [ published ]
31+
# types: [published]
3532
jobs:
3633
flutter_tests:
3734
name: Analyze, test and build 5 web apps

.github/workflows/deploy.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# This GitHub action runs on a release, when it is published, created or edited.
2-
#
32
# - Installs dart and flutter
43
# - Uses flutter stable channel. Might setup a matrix later with beta and dev included too.
54
# - Enables flutter web
@@ -18,7 +17,6 @@
1817
# - Flutter build web app, in release mode and with CanvasKit renderer.
1918
# - Use rpl to fix/modify the index.html file to give it the correct href deployment sub-folder.
2019
# - Deploy each built Web App to GitHub pages.
21-
#
2220
name: Deploy Web
2321
on:
2422
release:

.github/workflows/test.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# This GitHub action runs on push to master, it:
2-
#
32
# - Installs dart and flutter
43
# - Uses flutter stable channel. Might setup a matrix later with beta and dev included too.
54
# - Gets package dependencies
@@ -9,11 +8,10 @@
98
# dart format is not used.
109
# - Run all tests with coverage.
1110
# - Upload code coverage output to Codecov for analysis.
12-
#
1311
name: Test
1412
on:
1513
push:
16-
branches: [master]
14+
branches: [none]
1715
jobs:
1816
flutter_test:
1917
runs-on: ubuntu-latest

example/lib/shared/constants.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class AppConst {
1515
static const String version = '3.0.1';
1616
static const String packageVersion = 'FlexColorScheme package $version';
1717
static const String packageUrl = 'https://pub.dev/packages/flex_color_scheme';
18-
static const String flutterVersion = 'Channel stable, 2.2.2, CanvasKit';
18+
static const String flutterVersion = 'Channel stable, 2.2.1, CanvasKit';
1919
static const String copyright = '© 2020, 2021';
2020
static const String author = 'Mike Rydstrom';
2121
static const String license = 'BSD 3-Clause License';

example/pubspec.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@ dependencies:
1111
cupertino_icons: ^1.0.3
1212

1313
# Color scheme package (by Mike Rydstrom, rydmike.com).
14-
# flex_color_scheme: ^3.0.0
15-
flex_color_scheme:
16-
path: ../
14+
flex_color_scheme: ^3.0.1
1715

1816
# The Flutter SDK (by Google flutter.dev).
1917
flutter:

0 commit comments

Comments
 (0)