Pushing an update to merge the latest PR and version upgrade #94
Workflow file for this run
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: Deploy to Preview Channel | |
| on: | |
| pull_request: | |
| jobs: | |
| preview: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: ./example | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: subosito/flutter-action@v1 | |
| - run: flutter build web | |
| - uses: FirebaseExtended/action-hosting-deploy@v0 | |
| with: | |
| repoToken: "${{ secrets.GITHUB_TOKEN }}" | |
| firebaseServiceAccount: "${{ secrets.FIREBASE_SERVICE_ACCOUNT }}" | |
| expires: 30d | |
| entryPoint: "./example" | |
| projectId: animated-text-kit |