fix(docs): use proper markdown for badges #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy example to Pages | |
on: | |
push: | |
branches: ["main"] | |
workflow_dispatch: | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
concurrency: | |
group: "pages" | |
cancel-in-progress: false | |
jobs: | |
deploy: | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Pages | |
uses: actions/configure-pages@v5 | |
- uses: dart-lang/setup-dart@v1 | |
- name: Clone Flutter repository with stable channel | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: stable | |
cache: true | |
- name: Dart pub cache | |
uses: actions/cache@v4 | |
id: pub-cache | |
with: | |
path: ~/.pub-cache | |
key: ${{ runner.os }}-pub-${{ hashFiles('pubspec.lock') }} | |
restore-keys: | | |
${{ runner.os }}-pub- | |
- name: Install Melos | |
run: dart pub global activate melos | |
- name: Bootstrap melos | |
run: melos bootstrap | |
- name: Build Flutter Web application | |
run: flutter build web --wasm --release --base-href /dart_zxcvbn/ | |
working-directory: packages/flutter_password_scoring/example | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
# Upload entire repository | |
path: 'packages/flutter_password_scoring/example/build/web' | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 |