From 38f02606add9b610d8edd5c074dddbbf40821aa7 Mon Sep 17 00:00:00 2001 From: neverland Date: Tue, 20 Apr 2021 19:56:32 +0800 Subject: [PATCH] build: add github pages deploy action (#8582) --- .github/workflows/gh-pages.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/gh-pages.yml diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml new file mode 100644 index 000000000..736348a0e --- /dev/null +++ b/.github/workflows/gh-pages.yml @@ -0,0 +1,20 @@ +name: Build and Deploy Site +on: [push] +jobs: + build-and-deploy: + runs-on: ubuntu-latest + steps: + - name: Checkout 🛎️ + uses: actions/checkout@v2 + + - name: Install and Build + run: | + yarn + yarn release:site + + - name: Deploy 🚀 + uses: JamesIves/github-pages-deploy-action@4 + with: + branch: gh-pages + folder: site + target-folder: v3