Skip to content

Bump ws from 7.5.6 to 7.5.10 (#150) #102

Bump ws from 7.5.6 to 7.5.10 (#150)

Bump ws from 7.5.6 to 7.5.10 (#150) #102

Workflow file for this run

name: Build and Deploy
on:
push:
branches: [ master ]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2 # If you're using actions/checkout@v2 you must set persist-credentials to false in most cases for the deployment to work correctly.
with:
persist-credentials: false
- name: Install
run: yarn install
- name: Build
run: |
yarn build
cp ./config/CNAME ./build/CNAME
- name: Deploy 🚀
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_branch: gh-pages
publish_dir: ./build