Skip to content
This repository has been archived by the owner on Jun 7, 2024. It is now read-only.

update for the domain problem (#84) #107

update for the domain problem (#84)

update for the domain problem (#84) #107

Workflow file for this run

name: Deploy
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v2
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- run: |
yarn
yarn build
- uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: .vuepress/dist
clean: true