Selaa lähdekoodia

build: github actions & deploy

菲鸽 2 vuotta sitten
vanhempi
commit
c801b24ed9
3 muutettua tiedostoa jossa 75 lisäystä ja 1 poistoa
  1. 67 0
      .github/workflows/deploy-h5.yml
  2. 2 0
      env/.env
  3. 6 1
      manifest.config.ts

+ 67 - 0
.github/workflows/deploy-h5.yml

@@ -0,0 +1,67 @@
+name: Deploy unibest site to Pages
+
+on:
+  # Runs on pushes targeting the default branch
+  push:
+    branches: ['main']
+
+  # Allows you to run this workflow manually from the Actions tab
+  workflow_dispatch:
+
+# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
+permissions:
+  contents: read
+  pages: write
+  id-token: write
+
+jobs:
+  # Build job
+  build:
+    runs-on: ubuntu-latest
+    steps:
+      - uses: actions/checkout@v4
+      - uses: pnpm/action-setup@v2
+        with:
+          version: 8
+      - uses: actions/setup-node@v4
+        with:
+          node-version: '18'
+          cache: 'pnpm'
+      - name: Setup Pages
+        uses: actions/configure-pages@v4
+        with:
+          # Automatically inject basePath in your Next.js configuration file and disable
+          # server side image optimization (https://nextjs.org/docs/api-reference/next/image#unoptimized).
+          #
+          # You may remove this line if you want to manage the configuration yourself.
+          static_site_generator: dist/build/h5
+      - name: Restore cache
+        uses: actions/cache@v3
+        with:
+          path: |
+            dist/build/h5
+          # Generate a new cache whenever packages or source files change.
+          key: ${{ runner.os }}-unibest-${{ hashFiles('**/pnpm-lock.yaml') }}-${{ hashFiles('**.[jt]s', '**.[jt]sx') }}
+          # If source files changed but packages didn't, rebuild from a prior cache.
+          restore-keys: |
+            ${{ runner.os }}-unibest-${{ hashFiles('**/package-lock.json') }}-
+      - name: Install dependencies
+        run: pnpm i
+      - name: Build
+        run: pnpm build:h5
+      - name: Upload artifact
+        uses: actions/upload-pages-artifact@v3
+        with:
+          path: ./dist/build/h5
+
+  # Deployment job
+  deploy:
+    environment:
+      name: github-pages
+      url: ${{ steps.deployment.outputs.page_url }}
+    runs-on: ubuntu-latest
+    needs: build
+    steps:
+      - name: Deploy to GitHub Pages
+        id: deployment
+        uses: actions/deploy-pages@v4

+ 2 - 0
env/.env

@@ -1,5 +1,7 @@
 VITE_APP_TITLE = 'UniBest App'
 VITE_APP_PORT = 9000
+# github actions 部署地址根路径,用在 manifest.config.ts 里面的 h5.router.base
+VITE_APP_PUBLIC_BASE=/unibest/
 
 # TODO: 记得修改
 VITE_UNI_APPID = 'H5871D791'

+ 6 - 1
manifest.config.ts

@@ -6,7 +6,7 @@ import { loadEnv } from 'vite'
 // 获取环境变量的范例
 const env = loadEnv(process.env.NODE_ENV!, path.resolve(process.cwd(), 'env'))
 // console.log(env)
-const { VITE_APP_TITLE, VITE_UNI_APPID, VITE_WX_APPID } = env
+const { VITE_APP_TITLE, VITE_UNI_APPID, VITE_WX_APPID, VITE_APP_PUBLIC_BASE } = env
 
 export default defineManifestConfig({
   name: VITE_APP_TITLE,
@@ -15,6 +15,11 @@ export default defineManifestConfig({
   versionName: '1.0.0',
   versionCode: '100',
   transformPx: false,
+  h5: {
+    router: {
+      base: VITE_APP_PUBLIC_BASE,
+    },
+  },
   /* 5+App特有相关 */
   'app-plus': {
     usingComponents: true,