Skip to content

chore(deps): bump drift from 2.32.1 to 2.33.0 #5

chore(deps): bump drift from 2.32.1 to 2.33.0

chore(deps): bump drift from 2.32.1 to 2.33.0 #5

Workflow file for this run

name: Build App
on:
push:
branches:
- main
paths-ignore:
- '**.md'
pull_request:
branches:
- main
paths-ignore:
- '**.md'
jobs:
test:
name: Run Flutter Tests
uses: ./.github/workflows/test.yml
build:
name: Build ${{ matrix.name }}
needs: test
if: github.event_name != 'pull_request'
strategy:
fail-fast: true
matrix:
include:
- os: windows-latest
name: Windows
target: windows
command: flutter build windows
- os: ubuntu-latest
name: Android
target: android
command: flutter build apk
- os: macos-latest
name: macOS
target: macos
command: flutter build macos
- os: ubuntu-latest
name: Linux
target: linux
command: flutter build linux
- os: macos-latest
name: iOS
target: ios
command: flutter build ios --release --no-codesign
- os: ubuntu-latest
name: Web
target: web
command: flutter build web --wasm
uses: ./.github/workflows/reusable_build.yml
with:
os: ${{ matrix.os }}
target: ${{ matrix.target }}
command: ${{ matrix.command }}
upload_artifact: false
secrets:
OTA_GITHUB_TOKEN: ${{ secrets.OTA_GITHUB_TOKEN }}
SENTRY_TOKEN: ${{ secrets.SENTRY_TOKEN }}
SENTRY_DSN: ${{ secrets.SENTRY_DSN }}