2021-02-10 11:35:54 +08:00
|
|
|
name: Build Upload Site
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2021-02-10 12:58:24 +08:00
|
|
|
pull_request:
|
2021-02-10 11:35:54 +08:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
publish:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Get yarn cache directory path
|
|
|
|
id: yarn-cache-dir-path
|
|
|
|
run: echo "::set-output name=dir::$(yarn cache dir)"
|
|
|
|
|
|
|
|
- name: Cache Packages
|
|
|
|
id: yarn-cache
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
|
|
|
|
key: ${{ runner.os }}-yarn-${{ hashFiles('**/package-lock.json') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-yarn-
|
|
|
|
|
|
|
|
- name: Install and build
|
|
|
|
run: |
|
|
|
|
yarn install
|
|
|
|
yarn build
|
|
|
|
|
2021-02-10 11:38:56 +08:00
|
|
|
- name: Get Branch Name
|
2021-02-10 11:52:34 +08:00
|
|
|
run: echo "BRANCH_NAME=$(echo ${GITHUB_REF#refs/heads/})" >> $GITHUB_ENV
|
2021-02-10 11:38:56 +08:00
|
|
|
|
2021-02-10 12:58:24 +08:00
|
|
|
- name: Production Deploy
|
|
|
|
if: github.event_name == 'push' && env.BRANCH_NAME == 'master'
|
|
|
|
uses: nwtgck/actions-netlify@v1.1
|
|
|
|
with:
|
|
|
|
publish-dir: './docs/.vuepress/dist'
|
|
|
|
production-branch: ${{ env.BRANCH_NAME }}
|
|
|
|
production-deploy: true
|
|
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
deploy-message: 'Production Deploy ${{ env.BRANCH_NAME }}@${{ github.sha }}'
|
|
|
|
|
|
|
|
- name: Deploy to Netlify
|
|
|
|
uses: nwtgck/actions-netlify@v1.1
|
2021-02-10 11:35:54 +08:00
|
|
|
with:
|
2021-02-10 12:58:24 +08:00
|
|
|
publish-dir: './docs/.vuepress/dist'
|
|
|
|
production-branch: ${{ env.BRANCH_NAME }}
|
|
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
deploy-message: 'Deploy ${{ env.BRANCH_NAME }}@${{ github.sha }}'
|