Merge pull request #116 from build-umass/improvedLabeling #77
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: Firebase Deploy | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - release/* | |
| jobs: | |
| firebase-deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@master | |
| - name: Setup Node | |
| uses: actions/setup-node@master | |
| with: | |
| node-version: "12.x" | |
| - name: Install all dependencies | |
| run: npm run full-install | |
| - name: Create build | |
| run: npm run build | |
| - name: Deploy to Firebase | |
| uses: lowply/[email protected] | |
| env: | |
| FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }} | |
| FIREBASE_PROJECT: build-website-847b7 | |
| TARGET_BRANCH: master |