From 24ea7451546a81cd9001396edbf1decd271a5d56 Mon Sep 17 00:00:00 2001 From: 7Wate Date: Fri, 11 Nov 2022 16:29:40 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A1=B9=E7=9B=AE=EF=BC=9A=E9=85=8D=E7=BD=AE?= =?UTF-8?q?=20Github=20Action?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build.yml | 30 ++++++++++++++++++++++++++++++ .github/workflows/dev-pages.yml | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 62 insertions(+) create mode 100644 .github/workflows/build.yml create mode 100644 .github/workflows/dev-pages.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 00000000..78579c23 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,30 @@ +name: build +on: + push: + branches: + - main +jobs: + build-and-deploy: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Use Node 18 + uses: actions/setup-node@v3 + with: + node-version: 18 + + - name: Build + run: | + npm install + npm run build + + - name: Deploy + uses: peaceiris/actions-gh-pages@v3 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: ./build + publish_branch: html + + diff --git a/.github/workflows/dev-pages.yml b/.github/workflows/dev-pages.yml new file mode 100644 index 00000000..5d3e5f26 --- /dev/null +++ b/.github/workflows/dev-pages.yml @@ -0,0 +1,32 @@ +name: dev-pages +on: + push: + branches: + - dev + +jobs: + build-and-deploy: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Use Node 18 + uses: actions/setup-node@v3 + with: + node-version: 18 + + - name: Set BaseUrl + run: sed -i "s/\"\/\"/\"\/wiki\/\"/g" docusaurus.config.js + + - name: Build + run: | + npm install + npm run build + + - name: Deploy + uses: peaceiris/actions-gh-pages@v3 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: ./build + publish_branch: dev-pages \ No newline at end of file