鲁树人
ce969af57f
All checks were successful
Build and Deploy / build (push) Successful in 1m4s
自动构建相关。 Reviewed-on: #80 Co-authored-by: 鲁树人 <lu.shuren@um-react.app> Co-committed-by: 鲁树人 <lu.shuren@um-react.app>
35 lines
1015 B
YAML
35 lines
1015 B
YAML
name: Build and Deploy
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
npm_config_registry: https://registry.npmmirror.com
|
|
steps:
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v4
|
|
- name: Setup pnpm
|
|
uses: pnpm/action-setup@v4.0.0
|
|
with:
|
|
standalone: true
|
|
run_install: |
|
|
- args: [--frozen-lockfile, --strict-peer-dependencies]
|
|
- name: Build
|
|
run: pnpm build
|
|
- name: Prepare for deployment
|
|
run: |
|
|
python3 -m zipfile -c um-react.zip dist/.
|
|
cp um-react.zip dist/"release-${GITHUB_SHA}.zip"
|
|
python3 -m zipfile -c um-react-site.zip dist/.
|
|
- name: Publish Artifact
|
|
uses: christopherhx/gitea-upload-artifact@v4
|
|
with:
|
|
name: site
|
|
path: dist/
|
|
- name: Deploy
|
|
env:
|
|
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
|
|
NETLIFY_API_KEY: ${{ secrets.NETLIFY_API_KEY }}
|
|
run: ./scripts/deploy.sh
|