Skip to content

Allow dot in input fields #11

Allow dot in input fields

Allow dot in input fields #11

Workflow file for this run

name: Build and deploy to web
on:
workflow_dispatch:
push:
branches:
- main
permissions:
contents: write
jobs:
trigger-test:
uses: ./.github/workflows/test.yml
build-and-deploy:
concurrency: deploy-web-${{ github.ref }}
runs-on: ubuntu-latest
needs: trigger-test
steps:
- uses: subosito/flutter-action@v2
with:
flutter-version: ${{ vars.FLUTTER_VERSION }}
channel: ${{ vars.FLUTTER_CHANNEL }}
- uses: actions/checkout@v4
- run: flutter pub get
- run: flutter build -v web --release --base-href=/${{ github.event.repository.name }}/
- uses: JamesIves/github-pages-deploy-action@v4
with:
folder: build/web