feat: /sqmc/www 新乡医学院三全学院官网信息 (#13322) #2082
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build assets | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- 'lib/**' | |
- 'scripts/workflow/*.js' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Build assets | |
timeout-minutes: 5 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Use Node.js Active LTS | |
uses: actions/setup-node@v3 | |
with: | |
node-version: lts/* | |
cache: 'pnpm' | |
- name: Install dependencies (yarn) | |
run: pnpm i | |
- name: Build assets | |
run: npm run build:all | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./assets | |
user_name: 'github-actions[bot]' | |
user_email: '41898282+github-actions[bot]@users.noreply.github.com' |