added dart pl¿? #251
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
name: Main Deploy Workflow | |
on: | |
push: | |
branches: | |
- main | |
- sentry-using-dart | |
workflow_dispatch: | |
env: | |
WEB_APP_ENV: ${{ vars.WEB_APP_ENV }} | |
jobs: | |
build_web: | |
runs-on: ubuntu-latest | |
environment: staging | |
steps: | |
- uses: actions/checkout@v4 | |
- run: cat .github/workflows/versions.env >> $GITHUB_ENV | |
- uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: ${{ env.FLUTTER_VERSION }} | |
- name: Remove Emoji Font | |
run: | | |
rm -rf fonts/NotoEmoji | |
yq -i 'del( .flutter.fonts[] | select(.family == "NotoEmoji") )' pubspec.yaml | |
- run: flutter pub get | |
- name: Prepare web | |
run: ./scripts/prepare-web.sh | |
- name: Build Release Web | |
run: ./scripts/build-web.sh | |
- name: Upload files | |
uses: actions/upload-artifact@v3 | |
with: | |
name: web | |
path: build/web | |
update_sentry: | |
runs-on: ubuntu-latest | |
needs: build_web | |
environment: staging | |
env: | |
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} | |
SENTRY_RELEASE: ${{ github.sha }} | |
steps: | |
- uses: actions/checkout@v4 | |
- run: cat .github/workflows/versions.env >> $GITHUB_ENV | |
- uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: ${{ env.FLUTTER_VERSION }} | |
- name: Download web | |
uses: actions/download-artifact@v3 | |
with: | |
name: web | |
path: build/web | |
- name: test | |
run: echo ${{ vars.SENTRY_ORG }} | |
- name: Update sentry | |
run: dart run sentry_dart_plugin |