forked from clovisnicolas/flutter_vibrate
-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
54 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: github pages | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-18.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Setup Flutter | ||
uses: subosito/flutter-action@v1 | ||
with: | ||
channel: 'dev' | ||
|
||
- name: Install | ||
run: | | ||
flutter config --enable-web | ||
flutter pub get | ||
- name: Build | ||
run: cd example && flutter build web | ||
|
||
- name: Deploy | ||
uses: peaceiris/actions-gh-pages@v3 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: ./example/build/web |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
## 1.1.0 | ||
|
||
* Merging changes and fixing lint errors | ||
|
||
## 1.0.0 | ||
|
||
* Changing Name | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,26 @@ | ||
name: flutter_vibrate | ||
description: A Haptic Feedback plugin. | ||
version: 1.0.0 | ||
version: 1.1.0 | ||
environment: | ||
sdk: ">=2.12.0 <3.0.0" | ||
sdk: '>=2.12.0-259.8.beta <3.0.0' | ||
flutter: ^1.10.0 | ||
authors: | ||
- Clovis Nicolas <clovisnicolas0@gmail.com> | ||
- Rhodes Davis Jr. <rody.davis.jr@gmail.com> | ||
- GiKode <827266641@qq.com> | ||
homepage: https://github.com/rodydavis/flutter_vibrate | ||
maintainer: Rody Davis (@rodydavis) | ||
homepage: https://github.com/rodydavis/plugins | ||
repository: https://github.com/rodydavis/flutter_vibrate | ||
|
||
dependencies: | ||
flutter: | ||
sdk: flutter | ||
|
||
flutter: | ||
plugin: | ||
androidPackage: flutter.plugins.vibrate | ||
pluginClass: VibratePlugin | ||
|
||
platforms: | ||
android: | ||
package: flutter.plugins.vibrate | ||
pluginClass: VibratePlugin | ||
ios: | ||
pluginClass: VibratePlugin |