-
Notifications
You must be signed in to change notification settings - Fork 2
58 lines (43 loc) · 1.52 KB
/
update-next.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# The current state of `main` is published as the @next version on the `dist` branch
name: Update @next schema versions
on:
push:
branches:
- main
env:
VERSION: "@next"
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '18.16.1'
- name: Install pnpm
run: npm install -g pnpm
- name: Install Dependencies
run: pnpm install
- name: Build JSON schema files
run: pnpm build
- name: Move JSON schema files to /@next folder
run: |
mv schemas/* "$GITHUB_WORKSPACE/${{ env.VERSION }}"
mv types/* "$GITHUB_WORKSPACE/${{ env.VERSION }}/types"
# Copy JSON files, preserving directory structure
rsync -a --prune-empty-dirs --include '*/' --include '*.json' --exclude '*' examples/ "$GITHUB_WORKSPACE/${{ env.VERSION }}/examples/"
# Remove JSON files from source destination
find examples -type f -name "*.json" -delete
- name: Checkout Dist Branch
run: |
git fetch origin dist
git checkout -b dist origin/dist
- name: Commit and Push Changes
run: |
git config user.name "${GITHUB_ACTOR}"
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
git add .
git commit -m "Add build files for ${{ env.VERSION }}"
git push origin dist