Skip to content

Bump tar from 6.1.12 to 6.2.1 (#145) #96

Bump tar from 6.1.12 to 6.2.1 (#145)

Bump tar from 6.1.12 to 6.2.1 (#145) #96

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