Skip to content

⬆️ Bump flutter_lints from 2.0.3 to 3.0.0 #2

⬆️ Bump flutter_lints from 2.0.3 to 3.0.0

⬆️ Bump flutter_lints from 2.0.3 to 3.0.0 #2

Workflow file for this run

name: Deploy to GitHub Pages
on:
workflow_dispatch:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup flutter sdk
uses: subosito/flutter-action@v2
with:
channel: 'stable'
- name: Log Dart/Flutter versions
run: |

Check failure on line 23 in .github/workflows/deploy.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/deploy.yml

Invalid workflow file

You have an error in your yaml syntax on line 23
dart --version
flutter --version
- name: Install dependencies
run: flutter packages get
- name: Build web
run: cd example; flutter build web --release --base-href '/slidable_line_chart/'
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./example/build/web