feat: Increase default audio bitrate. (#616) #153
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
name: deploy web on github-page | |
on: | |
push: | |
branches: [main] | |
jobs: | |
build: | |
name: Build Web | |
env: | |
my_secret: ${{secrets.commit_secret}} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: subosito/flutter-action@v1 | |
with: | |
channel: "stable" | |
- run: flutter config --enable-web | |
- run: flutter clean | |
- run: flutter pub get | |
- run: | | |
dart compile js web/e2ee.worker.dart -o example/web/e2ee.worker.dart.js -m | |
cd example | |
flutter build web --release --web-renderer html --base-href /client-sdk-flutter/ | |
cd build/web | |
git init | |
git config --global user.email [email protected] | |
git config --global user.name cloudwebrtc | |
git status | |
git remote add origin https://${{secrets.commit_secret}}@github.com/livekit/client-sdk-flutter.git | |
git checkout -b gh-pages | |
git add --all | |
git commit -m "update" | |
git push origin gh-pages -f |