| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- name: Deploy Pages
- on:
- # Runs on pushes targeting the default branch
- push:
- branches: ['gh-pages']
- # 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: 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('**/pnpm-lock.yaml') }}-
- - 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
|