Skip to content

Add pull down to refresh to grouped ui #56

Add pull down to refresh to grouped ui

Add pull down to refresh to grouped ui #56

Workflow file for this run

name: Build web
on:
workflow_dispatch:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
channel: stable
cache: true
# optional parameters follow
cache-key: "flutter-:os:-:channel:-:version:-:arch:-:hash:" # optional, change this to force refresh cache
cache-path: "${{ runner.tool_cache }}/flutter/:channel:-:version:-:arch:" # optional, change this to specify the cache path
pub-cache-key: "flutter-pub:os:-:channel:-:version:-:arch:-:hash:" # optional, change this to force refresh cache of dart pub get dependencies
pub-cache-path: "${{ runner.tool_cache }}/flutter/:channel:-:version:-:arch:" # optional, change this to specify the cache path
- run: flutter --version
- run: flutter build web --release --base-href /ShockAlarmApp/build/web/
- name: Commit files
run: |
git config --local user.email "ShockAlarms+github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git fetch --all
git checkout -b deploy
git merge main
git add .
git commit -a -m "Build web"
git push --force origin deploy