1.0.0
This commit is contained in:
32
.github/workflows/gh-pages.yml
vendored
Normal file
32
.github/workflows/gh-pages.yml
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
name: Gh-Pages
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ main ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Install Flutter
|
||||
uses: subosito/flutter-action@v2
|
||||
- name: Set fl_chart Version
|
||||
run: |
|
||||
VERSION=$(grep "version:" pubspec.yaml | awk '{ print $2 }')
|
||||
echo "USING_FL_CHART_VERSION=$VERSION" >> $GITHUB_ENV
|
||||
- run: flutter config --enable-web
|
||||
working-directory: example
|
||||
- run: flutter build web --release --wasm --base-href=/ --dart-define="USING_FL_CHART_VERSION=${{ env.USING_FL_CHART_VERSION }}"
|
||||
working-directory: example
|
||||
- run: git config user.name github-actions
|
||||
working-directory: example
|
||||
- run: git config user.email github-actions@github.com
|
||||
working-directory: example
|
||||
- run: git --work-tree build/web add --all
|
||||
working-directory: example
|
||||
- run: git commit -m "Automatic deployment by github-actions"
|
||||
working-directory: example
|
||||
- run: git push origin HEAD:gh-pages --force
|
||||
working-directory: example
|
||||
Reference in New Issue
Block a user