Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
modal_bottom_sheet
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Jaime Blasco
2020-04-08 13:56:45 +0200
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Committed by
GitHub
2020-04-08 13:56:45 +0200
Commit
e1e7da48a1ceea0c79f689fca3c48fd53d07e05f
e1e7da48
1 parent
d125f1ce
Create flutter_web.yml
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
34 additions
and
0 deletions
.github/workflows/flutter_web.yml
.github/workflows/flutter_web.yml
0 → 100644
View file @
e1e7da4
name
:
Flutter Web
on
:
push
:
branches
:
-
master
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
:
'
dev'
-
run
:
|
cd example
flutter config --enable-web
flutter pub get
-
run
:
|
cd example
flutter build web --release --dart-define=FLUTTER_WEB_USE_SKIA=true
-
run
:
|
cd example/build/web
git init
git config --global user.email git@jaimeblasco.com
git config --global user.name jamesblasco
git status
git remote add origin https://${{secrets.commit_secret}}@github.com/jamesblasco/modal_bottom_sheet.git
git checkout -b gh-pages
git add --all
git commit -m "Update web"
git push origin gh-pages -f
...
...
Please
register
or
login
to post a comment