Update example
app files for missing RunnerTests
folder and Podfile
#30
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: Deploy to Firebase Hosting on PR | |
'on': pull_request_target | |
jobs: | |
build_and_preview: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: 'stable' | |
- run: flutter build web --release --web-renderer=canvaskit | |
working-directory: ./coffee_maker | |
- run: flutter build web --release --web-renderer=canvaskit | |
working-directory: ./playground | |
- run: flutter build web --release --web-renderer=canvaskit | |
working-directory: ./playground_navigator2 | |
- uses: FirebaseExtended/action-hosting-deploy@v0 | |
with: | |
repoToken: '${{ secrets.GITHUB_TOKEN }}' | |
firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_WOLTMODALAPP }}' | |
projectId: woltmodalapp |