-
Notifications
You must be signed in to change notification settings - Fork 16
141 lines (116 loc) · 3.73 KB
/
Copy pathci.yaml
File metadata and controls
141 lines (116 loc) · 3.73 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
on:
push:
branches:
- '**'
pull_request:
repository_dispatch:
types: [release]
workflow_dispatch:
inputs:
json:
description: Passed json from repository_dispatch
required: true
type: string
version_postfix:
description: Additional string to concatenate onto the existing version before release
required: false
type: string
default: ''
workflow_call:
inputs:
ref:
description: Ref of this repository to build.
required: false
type: string
default: main
name: CI
env:
PASSED_VERSION: ${{ (github.event_name == 'repository_dispatch' && github.event.client_payload || fromJSON(inputs.json || '{}'))['version'] }}
VERSION_POSTPEND: ${{ github.event_name == 'workflow_dispatch' && inputs.version_postfix || '' }}
jobs:
generate:
runs-on: ubuntu-latest
outputs:
version: ${{ steps.version.outputs.version }}
steps:
- uses: actions/checkout@v7
with:
repository: vrchatapi/vrchatapi-python
ref: ${{ inputs.ref || github.ref }}
- uses: vrchatapi/specification/.github/actions/setup-generator@main
- uses: vrchatapi/specification/.github/actions/download@main
with:
bundle: openapi-legacy.yaml
# PyPI wants `.dev` where the specification says `-nightly.`
- id: version
run: |
version="${PASSED_VERSION}${VERSION_POSTPEND}"
version="${version:-$(yq -r '.info.version' openapi-legacy.yaml)}"
echo "version=${version/-nightly./.dev}" >> $GITHUB_OUTPUT
- if: env.VERSION_POSTPEND != ''
run: yq '--inplace' ".info.version |= \"${{ steps.version.outputs.version }}\"" openapi-legacy.yaml
- run: bash ./generate.sh openapi-legacy.yaml "${{ steps.version.outputs.version }}"
- uses: actions/upload-artifact@v7
with:
name: python-generated
path: .
include-hidden-files: true
build:
needs: generate
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v8
with:
name: python-generated
- uses: actions/setup-python@v7
with:
python-version: '3.14'
cache: pip
- run: python -m pip install build
- run: python -m build --sdist --wheel --outdir dist/ .
- uses: actions/upload-artifact@v7
with:
name: python-package
path: dist
install:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v8
with:
name: python-package
path: dist
- uses: actions/setup-python@v7
with:
python-version: '3.14'
- run: python -m pip install dist/*.whl
- run: python -c "import vrchatapi; print(vrchatapi.__name__)"
publish:
needs:
- generate
- build
- install
if: github.repository == 'vrchatapi/vrchatapi-python'
&& (github.event_name == 'repository_dispatch' || github.event_name == 'workflow_dispatch')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
with:
repository: vrchatapi/vrchatapi-python
- uses: actions/download-artifact@v8
with:
name: python-generated
- run: rm -f openapi-legacy.yaml
- uses: JamesIves/github-pages-deploy-action@v4.9.0
with:
branch: main
folder: .
commit-message: Upgrade Python SDK to spec ${{ needs.generate.outputs.version }}
- uses: actions/download-artifact@v8
with:
name: python-package
path: dist
- uses: pypa/gh-action-pypi-publish@release/v1
with:
skip_existing: true
password: ${{ secrets.PYPI_API_TOKEN }}