From e1c9eb79e886fe7acb1e27ddcd27464ce28a9a5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=B5=AA=E5=AD=90?= Date: Mon, 28 Oct 2024 18:42:37 +0800 Subject: [PATCH] Create deploy.yml --- .github/workflows/deploy.yml | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..f363d73 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,36 @@ +name: Deploy Astro Site + +on: + push: + branches: + - main + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + - name: Set up Node.js + uses: actions/setup-node@v3 + with: + node-version: '20' + + - name: Install dependencies + run: npm install -g pnpm + + - name: Install sharp + run: pnpm install && pnpm add sharp + + - name: Build site + run: pnpm build + + - name: Deploy to GitHub Pages + uses: peaceiris/actions-gh-pages@v3 + with: + github_token: ${{ secrets.ASTRO }} + PUBLISH_BRANCH: gh-pages # 推送到当前 gh-pages 分支 + publish_dir: ./dist + commit_message: ${{ github.event.head_commit.message }} \ No newline at end of file