Bump sentry_logging from 7.16.0 to 7.16.1 #49
Workflow file for this run
This file contains 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
on: | |
push: | |
pull_request: | |
jobs: | |
build_android: | |
name: Build Android Artifact | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v2 | |
with: | |
distribution: 'zulu' | |
java-version: '11' | |
- uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: '3.16.9' | |
- name: Install packages | |
run: flutter pub get | |
- name: Generate localizations | |
run: flutter gen-l10n | |
- name: Generate configs | |
run: dart run intl_translation:generate_from_arb --output-dir=lib/l10n --no-use-deferred-loading lib/Frontend/intnDefs.dart lib/l10n/*.arb && flutter pub run build_runner build --delete-conflicting-outputs | |
- name: Build APK | |
run: flutter build apk | |
- name: Build App BUndle | |
run: flutter build appbundle | |
build_ios: | |
name: Build IOS Artifact | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dart-lang/setup-dart@v1 | |
- uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: '3.16.9' | |
- name: Install packages | |
run: flutter pub get | |
- name: Generate localizations | |
run: flutter gen-l10n | |
- name: Generate configs | |
run: dart run intl_translation:generate_from_arb --output-dir=lib/l10n --no-use-deferred-loading lib/Frontend/intnDefs.dart lib/l10n/*.arb && flutter pub run build_runner build --delete-conflicting-outputs | |
- name: Build app | |
run: flutter build ios --release --no-codesign |