Skip to content

Bump http-proxy-middleware from 2.0.1 to 2.0.7 (#156) #108

Bump http-proxy-middleware from 2.0.1 to 2.0.7 (#156)

Bump http-proxy-middleware from 2.0.1 to 2.0.7 (#156) #108

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