-
Notifications
You must be signed in to change notification settings - Fork 21
127 lines (105 loc) · 3.07 KB
/
Copy pathci.yaml
File metadata and controls
127 lines (105 loc) · 3.07 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
on:
push:
branches:
- '**'
pull_request:
repository_dispatch:
types: [release]
workflow_dispatch:
inputs:
url:
type: string
description: URL (openapi.json)
workflow_call:
inputs:
ref:
description: Ref of this repository to build.
required: false
type: string
default: main
permissions:
id-token: write
contents: read
name: CI
jobs:
generate:
runs-on: ubuntu-latest
outputs:
version: ${{ steps.version.outputs.version }}
tag: ${{ steps.version.outputs.tag }}
steps:
- uses: actions/checkout@v7
with:
repository: vrchatapi/vrchatapi-javascript
ref: ${{ inputs.ref || github.ref }}
- uses: vrchatapi/specification/.github/actions/download@main
with:
url: ${{ inputs.url }}
- uses: pnpm/setup@v2
with:
runtime: node@24
cache: true
- run: pnpm generate
- id: version
run: |
version=$(jq -r '.info.version' ./openapi.json)
version=$(node -p "
const semver = require('semver');
const version = semver.parse('$version');
version.major += 1;
version.minor += 2;
version.format();
")
echo "version=$version" >> $GITHUB_OUTPUT
echo "tag=$(node -p "require('semver').parse('$version')?.prerelease[0] || 'latest'")" >> $GITHUB_OUTPUT
- uses: actions/upload-artifact@v7
with:
name: javascript-generated
path: src/generated
build:
needs: generate
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
with:
repository: vrchatapi/vrchatapi-javascript
ref: ${{ inputs.ref || github.ref }}
- uses: actions/download-artifact@v8
with:
name: javascript-generated
path: src/generated
- uses: pnpm/setup@v2
with:
runtime: node@24
cache: true
- run: pnpm version ${{ needs.generate.outputs.version }} --no-git-tag-version
- run: pnpm build
- if: github.event_name == 'pull_request' || github.repository == 'vrchatapi/vrchatapi-javascript'
run: |
pnpm exec pkg-pr-new publish \
--packageManager=pnpm \
--no-template \
--no-compact \
--commentWithSha
- run: pnpm pack --out package.tgz
- uses: actions/upload-artifact@v7
with:
name: javascript-package
path: package.tgz
publish:
needs:
- generate
- build
if: github.repository == 'vrchatapi/vrchatapi-javascript'
&& github.ref == 'refs/heads/main'
&& !contains(github.event.head_commit.message, 'no_release')
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v8
with:
name: javascript-package
- uses: actions/setup-node@v7
with:
node-version: 24
registry-url: https://registry.npmjs.org
- run: npm publish package.tgz --tag ${{ needs.generate.outputs.tag }}