Skip to content

Commit 9094a2b

Browse files
committed
updated job
1 parent 126af8a commit 9094a2b

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/main.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,25 @@ jobs:
1616
with:
1717
channel: stable
1818

19+
- name: Configure Flutter for web
20+
shell: bash
21+
run: |
22+
flutter config --enable-web
23+
flutter create --platforms=web .
24+
1925
- name: Build the Flutter web application
2026
shell: bash
2127
run: |
2228
flutter pub get
2329
flutter build web --release --base-href "/ThreeactionsArea/"
2430
31+
- name: Configure Git
32+
shell: bash
33+
run: |
34+
git config --global user.name "GreyLabsDev"
35+
git config --global user.email "[email protected]"
36+
git config --global --add safe.directory /github/workspace
37+
2538
- name: Deploy to GitHub pages
2639
shell: bash
2740
run: |

0 commit comments

Comments
 (0)