chore: remove visible attribute in word (#55) #36
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_app_dev | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy-dev: | |
runs-on: ubuntu-latest | |
name: Deploy App Development | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: "stable" | |
- run: flutter packages get | |
- run: flutter build web --web-renderer canvaskit -t lib/main_development.dart | |
- uses: FirebaseExtended/action-hosting-deploy@v0 | |
with: | |
repoToken: "${{ secrets.GITHUB_TOKEN }}" | |
firebaseServiceAccount: "${{ secrets.FIREBASE_SERVICE_ACCOUNT_DEV }}" | |
projectId: io-crossword-dev | |
target: app_dev | |
expires: 30d | |
channelId: live |