Skip to content

Commit

Permalink
chore: add deploy app dev workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jsgalarraga committed Mar 5, 2024
1 parent d8ed354 commit e3670b7
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/deploy_app_dev.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: deploy_app_dev

on:
push:
branches:
- main

jobs:
deploy-dev:
runs-on: ubuntu-latest
name: Deploy App Development
steps:
- uses: actions/checkout@v3
- 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

0 comments on commit e3670b7

Please sign in to comment.