Skip to content

fix: disposition undefined issue (#109) #79

fix: disposition undefined issue (#109)

fix: disposition undefined issue (#109) #79

Workflow file for this run

name: Deploy
on:
push:
branches:
- master
jobs:
build-and-deploy:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn
- run: yarn build --hosting-url $HOSTING_URL
env:
HOSTING_URL: ${{ secrets.HOSTING_URL }}
RINGCENTRAL_CLIENT_ID: ${{ secrets.RINGCENTRAL_CLIENT_ID }}
RINGCENTRAL_SERVER: ${{ secrets.RINGCENTRAL_SERVER }}
ENGAGE_VOICE_AUTH_SERVER: ${{ secrets.ENGAGE_VOICE_AUTH_SERVER }}
- name: Github Pages
uses: JamesIves/github-pages-deploy-action@3.7.1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: build/rc
CLEAN: true