Skip to content

Update build_web.yml #9

Update build_web.yml

Update build_web.yml #9

Workflow file for this run

name: Build and Deploy Flutter Web App
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.24.0'
channel: 'stable'
- name: Get dependencies
run: flutter pub get
- name: Enable Flutter web
run: flutter config --enable-web
- name: Build Flutter web app
run: flutter build web --release --wasm
- name: Update base href in index.html
run: sed -i 's|<base href="/">|<base href="/web/">|g' build/web/index.html
- name: Upload to SFTP
uses: wlixcc/[email protected]
with:
server: ${{ secrets.FTP_SERVER }}
username: ${{ secrets.FTP_USERNAME }}
password: ${{ secrets.FTP_PASSWORD }}
local_path: ./build/web/*
remote_path: wonderous.app/web-staging
sftp_only: true