mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-02 12:09:14 +08:00
85c31f1c43
* ci: add stackblitz templates ref: https://github.com/ant-design/ant-design/pull/49647#issuecomment-2197884871 * chore: update ignore * chore: fix * chore: fix ci * chore: update * chore: update * chore: 节约 ci 资源 * Revert "chore: 节约 ci 资源" This reverts commit 0a3bb297f318c12bb61d29479f10a8e1d43743c8.
37 lines
797 B
YAML
37 lines
797 B
YAML
name: Publish Any Commit
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- run: corepack enable
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 20
|
|
|
|
- name: Install dependencies
|
|
run: npm install
|
|
|
|
- name: Build
|
|
run: npm run build
|
|
|
|
# ========== Prepare examples ==========
|
|
- name: Clear examples
|
|
run: rm -rf examples
|
|
|
|
- name: Clone examples
|
|
uses: actions/checkout@v4
|
|
with:
|
|
repository: ant-design/ant-design-examples
|
|
path: examples
|
|
|
|
- name: Modify examples
|
|
run: npx tsx scripts/prepare-examples.ts
|
|
|
|
- run: npx pkg-pr-new publish --template './examples/examples/*'
|