Skip to content

Commit

Permalink
Create deploy-web.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
cloudwebrtc authored Nov 27, 2023
1 parent 2b3ca95 commit 105ee59
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/deploy-web.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
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: |
webdev build
cd build
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/flutter-webrtc/dart-video-element-flicker-demo.git
git checkout -b gh-pages
git add --all
git commit -m "update"
git push origin gh-pages -f

0 comments on commit 105ee59

Please sign in to comment.