wip: migrating functions to typescript #109
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 Develop" | |
on: | |
push: | |
branches: | |
- develop | |
jobs: | |
deploy-dev: | |
name: deploy-develop | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@master | |
- name: Build | |
run: | | |
yarn install | |
PUBLIC_URL="https://csound-ide-dev.web.app" yarn build:dev | |
cp build/index.html functions | |
cd functions | |
yarn install | |
- name: Deploy to Firebase | |
uses: w9jds/firebase-action@master | |
with: | |
args: deploy -P develop | |
env: | |
GCP_SA_KEY: ${{ secrets.GCP_SA_KEY_DEV }} | |
REACT_APP_DATABASE: DEV |