Skip to content

Commit

Permalink
update: github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
LinXunFeng committed Mar 30, 2024
1 parent 2aedc5d commit fcd298b
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,15 @@ jobs:
with:
flutter-version: '3.16.9'
channel: 'stable'
- run: flutter config --enable-web
- run: flutter pub get
- run: flutter build web --release
- run: |
cd build/web
- name: Flutter build web
working-directory: ./example
run: |
flutter config --enable-web
flutter pub get
flutter build web --release
- name: Deploy
working-directory: ./example/build/web
run: |
git init
git config --global user.email LinXunFeng
git config --global user.name linxunfeng@yeah.net
Expand Down

0 comments on commit fcd298b

Please sign in to comment.