chore(deps): bump drift from 2.32.1 to 2.33.0 #5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 }} |