We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 126af8a commit 9094a2bCopy full SHA for 9094a2b
.github/workflows/main.yml
@@ -16,12 +16,25 @@ jobs:
16
with:
17
channel: stable
18
19
+ - name: Configure Flutter for web
20
+ shell: bash
21
+ run: |
22
+ flutter config --enable-web
23
+ flutter create --platforms=web .
24
+
25
- name: Build the Flutter web application
26
shell: bash
27
run: |
28
flutter pub get
29
flutter build web --release --base-href "/ThreeactionsArea/"
30
31
+ - name: Configure Git
32
33
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
38
- name: Deploy to GitHub pages
39
40
0 commit comments