Skip to content

fix: default sampling to False to avoid changing existing behavior #52

fix: default sampling to False to avoid changing existing behavior

fix: default sampling to False to avoid changing existing behavior #52

Workflow file for this run

name: website
on:
push:
branches:
- main
jobs:
publish-website:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- run: yarn install
working-directory: ./demo/client
- run: yarn build
working-directory: ./demo/client
env:
REACT_APP_API_HOST: ${{ secrets.API_HOST }}
PUBLIC_URL: https://chanind.github.io/frame-semantic-transformer
REACT_APP_ROOT_PATH: /frame-semantic-transformer
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./demo/client/build