Skip to content

πŸ“ Update README #23

πŸ“ Update README

πŸ“ Update README #23

Workflow file for this run

name: Deploy Flutter Web
on:
push:
branches:
- master
jobs:
build:
name: Build Web
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Flutter action
id: flutter-action
uses: subosito/flutter-action@v2
with:
channel: "stable"
- name: Flutter info
run: |
echo channel=${{ steps.flutter-action.outputs.channel }} >> $GITHUB_STEP_SUMMARY
echo version=${{ steps.flutter-action.outputs.version }} >> $GITHUB_STEP_SUMMARY
echo architecture=${{ steps.flutter-action.outputs.architecture }} >> $GITHUB_STEP_SUMMARY
- name: Build for Web
run: |
flutter pub get
flutter build web
- name: Deploy πŸš€
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: build/web # The folder the action should deploy.