-
Notifications
You must be signed in to change notification settings - Fork 12
101 lines (86 loc) 路 2.7 KB
/
Copy pathci.yaml
File metadata and controls
101 lines (86 loc) 路 2.7 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
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
steps:
- uses: actions/checkout@v7
with:
repository: vrchatapi/vrchatapi-java
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
- if: env.VERSION_POSTPEND != ''
run: yq '--inplace' ".info.version |= \"${PASSED_VERSION}${VERSION_POSTPEND}\"" openapi-legacy.yaml
- run: bash ./generate.sh openapi-legacy.yaml
- uses: actions/upload-artifact@v7
with:
name: java-generated
path: .
include-hidden-files: true
test:
needs: generate
runs-on: ubuntu-latest
strategy:
matrix:
java: ['17', '21']
steps:
- uses: actions/download-artifact@v8
with:
name: java-generated
- uses: actions/setup-java@v5.7.0
with:
java-version: ${{ matrix.java }}
distribution: temurin
cache: maven
- run: mvn -B package --no-transfer-progress
publish:
needs:
- generate
- test
if: github.repository == 'vrchatapi/vrchatapi-java'
&& (github.event_name == 'repository_dispatch' || github.event_name == 'workflow_dispatch')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
with:
repository: vrchatapi/vrchatapi-java
- uses: actions/download-artifact@v8
with:
name: java-generated
- run: rm -f openapi-legacy.yaml
- uses: JamesIves/github-pages-deploy-action@v4.9.0
with:
branch: main
folder: .
commit-message: Upgrade Java SDK to spec ${{ env.PASSED_VERSION }}${{ env.VERSION_POSTPEND }}
tag: ${{ env.PASSED_VERSION }}${{ env.VERSION_POSTPEND }}