Skip to content

Bump protobufjs from 6.11.2 to 6.11.4 in /hosting #31

Bump protobufjs from 6.11.2 to 6.11.4 in /hosting

Bump protobufjs from 6.11.2 to 6.11.4 in /hosting #31

Workflow file for this run

name: Build and deploy
on: push
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v2
- name: Use Node.js 16.x
uses: actions/setup-node@v1
with:
node-version: 16.x
- run: yarn
- run: yarn build
deploy-main:
concurrency: deploy-main
if: github.ref == 'refs/heads/main'
needs:
- build
runs-on: ubuntu-latest
timeout-minutes: 40
steps:
- uses: actions/checkout@v2
- name: Use Node.js 16.x
uses: actions/setup-node@v1
with:
node-version: 16.x
- run: yarn
- run: yarn build
- name: firebase deploy
env:
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}
run: |
yarn global add firebase-tools
firebase deploy --token "$FIREBASE_TOKEN" --force