Fix build script and add isLive property to MatchData #25
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: Firebase Deploy | |
'on': | |
push: | |
branches: | |
- main | |
jobs: | |
build_and_deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Firebase CLI | |
run: npm install -g firebase-tools | |
- name: Install App Dependencies | |
run: npm install | |
- name: Install Functions Dependencies | |
run: cd functions && npm install | |
- name: Deploy Firebase Functions | |
run: firebase deploy --only functions --project powerplay-devpp --token ${{ secrets.FIREBASE_TOKEN }} |