update github workflow config #6
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
# https://github.com/marketplace/actions/flutter-action | |
name: Flutter Web # 工作流名称 | |
on: | |
push: | |
branches: | |
- master # 当推送到master分支时触发 | |
jobs: | |
build: | |
name: Build Web # 这是作业名称 | |
env: | |
my_secret: ${{secrets.commit_secret}} | |
runs-on: ubuntu-latest # 运行在最新版本的Ubuntu操作系统上 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: 'stable' | |
- run: flutter config --enable-web | |
- run: flutter pub get | |
- run: flutter build web --release | |
- run: | | |
cd build/web | |
git init | |
# type configurations: your user.email and user.name followed lines | |
# git config --global user.email your_email | |
# git config --global user.name your_name | |
git config --global user.email [email protected] | |
git config --global user.name wooodypan | |
git status | |
# change this remote url for examle your remote url is https://github.com/onatcipli/flutter_web.git then the following: | |
git remote add origin https://${{secrets.commit_secret}}@github.com/Panway/flutter_blog.git | |
git checkout -b gh-pages | |
git add --all | |
git commit -m "update" | |
git push origin gh-pages -f |