github action
This commit is contained in:
parent
eaaab9e54f
commit
76189ad26d
47
.github/workflows/build_test.yml
vendored
Normal file
47
.github/workflows/build_test.yml
vendored
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
name: Build test
|
||||||
|
|
||||||
|
on: [push, pull_request]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
test_iOS:
|
||||||
|
name: Test iOS on ${{ matrix.os }}
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
os: [macos-latest]
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v1
|
||||||
|
- uses: actions/setup-java@v1
|
||||||
|
with:
|
||||||
|
java-version: '8.x'
|
||||||
|
- uses: subosito/flutter-action@v1
|
||||||
|
with:
|
||||||
|
channel: 'stable'
|
||||||
|
- run: dart --version
|
||||||
|
- run: flutter --version
|
||||||
|
- run: flutter pub get
|
||||||
|
- run: flutter pub publish --dry-run
|
||||||
|
- run: flutter analyze lib example/lib
|
||||||
|
- run: cd example; flutter build ios --no-codesign
|
||||||
|
|
||||||
|
test_android:
|
||||||
|
name: Test android on ${{ matrix.os }}
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
os: [ubuntu-latest]
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v1
|
||||||
|
- uses: actions/setup-java@v1
|
||||||
|
with:
|
||||||
|
java-version: '8.x'
|
||||||
|
- uses: subosito/flutter-action@v1
|
||||||
|
with:
|
||||||
|
channel: 'stable'
|
||||||
|
- run: dart --version
|
||||||
|
- run: flutter --version
|
||||||
|
- run: flutter pub get
|
||||||
|
- run: flutter pub publish --dry-run
|
||||||
|
- run: flutter analyze lib example/lib
|
||||||
|
- run: sudo echo "y" | sudo $ANDROID_HOME/tools/bin/sdkmanager "ndk;20.0.5594570"
|
||||||
|
- run: cd example; flutter build apk --debug
|
17
.github/workflows/publish_manually.yml
vendored
Normal file
17
.github/workflows/publish_manually.yml
vendored
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
name: Pub Publish manually
|
||||||
|
|
||||||
|
on: workflow_dispatch
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
publish:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v1
|
||||||
|
- name: Publish
|
||||||
|
uses: sakebook/actions-flutter-pub-publisher@v1.3.0
|
||||||
|
with:
|
||||||
|
credential: ${{ secrets.CREDENTIAL_JSON }}
|
||||||
|
flutter_package: true
|
||||||
|
skip_test: true
|
||||||
|
dry_run: false
|
21
.github/workflows/publish_on_release.yml
vendored
Normal file
21
.github/workflows/publish_on_release.yml
vendored
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
name: Publish on release
|
||||||
|
|
||||||
|
on:
|
||||||
|
release:
|
||||||
|
types: [published]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
publish:
|
||||||
|
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v1
|
||||||
|
- name: Publish
|
||||||
|
uses: sakebook/actions-flutter-pub-publisher@v1.3.0
|
||||||
|
with:
|
||||||
|
credential: ${{ secrets.CREDENTIAL_JSON }}
|
||||||
|
flutter_package: true
|
||||||
|
skip_test: true
|
||||||
|
dry_run: false
|
Loading…
Reference in New Issue
Block a user