From d24f334a8195c34ea923838670ce7b39d5fb7c6f Mon Sep 17 00:00:00 2001 From: xiaoxian521 <1923740402@qq.com> Date: Thu, 2 May 2024 21:45:57 +0800 Subject: [PATCH] ci: add `pages.yml` --- .github/workflows/pages.yml | 42 +++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 .github/workflows/pages.yml diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml new file mode 100644 index 000000000..6c86b751c --- /dev/null +++ b/.github/workflows/pages.yml @@ -0,0 +1,42 @@ +name: Build and Deploy +permissions: + contents: write +on: + push: + branches: + - main + +jobs: + deploy: + concurrency: ci-${{ github.ref }} + runs-on: ubuntu-latest + steps: + - name: Checkout 🛎️ + uses: actions/checkout@v4 + + - name: Install Node.js + uses: actions/setup-node@v4 + with: + node-version: 20 + registry-url: https://registry.npmjs.com/ + + - uses: pnpm/action-setup@v3 + name: Install pnpm + id: pnpm-install + with: + version: 8.6.10 + run_install: false + + - name: Deploy 🔧 + run: | + pnpm install --no-frozen-lockfile + sed -i "s#VITE_PUBLIC_PATH = /#VITE_PUBLIC_PATH = /vue-pure-admin/#g" $(pwd)/.env.production + pnpm build + cd dist + touch README.md .nojekyll + + - name: Deploy 🚀 + uses: JamesIves/github-pages-deploy-action@v4 + with: + folder: dist + clean: true \ No newline at end of file