Update README.md #4
This file contains hidden or 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
| name: Build and Deploy Flutter Web | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set up Flutter | |
| uses: subosito/flutter-action@v1 | |
| with: | |
| channel: 'stable' | |
| - name: Get dependencies | |
| run: | | |
| cd example | |
| flutter pub get | |
| - uses: bluefireteam/flutter-gh-pages@v7 | |
| with: | |
| workingDir: example | |
| baseHref: /flutter_document_scan_sdk/ |