-
Notifications
You must be signed in to change notification settings - Fork 52
133 lines (114 loc) · 4.19 KB
/
openapi.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
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
name: Openapi and Clients
on:
release:
push:
branches:
- main
- dev
workflow_dispatch:
jobs:
generate-openapi-and-clients:
runs-on: ubuntu-latest
permissions:
contents: write
packages: write
services:
redis:
image: redis
ports:
- 6379:6379
mongo:
image: mongo
ports:
- 27017:27017
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }} # checkout the correct branch name
fetch-depth: 0 # fetch the whole repo history
- name: Git Version
id: version
uses: codacy/git-version@2.7.1
with:
release-branch: main
dev-branch: dev
major-identifier: "breaking:"
minor-identifier: "feature:"
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 21
# - name: Startup Mongodb
# uses: supercharge/mongodb-github-action@1.8.0
#
# - name: Startup Redis
# uses: shogo82148/actions-setup-redis@v1
- name: Remove aliyun maven mirror
run: |
sed -i '/maven(url/d' build.gradle.kts
- name: Set versions
run: |
sed -i "s/^version.*$/version = \"${{ steps.version.outputs.version }}\"/g" build.gradle.kts
sed -i 's/"packageVersion.*,/"packageVersion": "${{ steps.version.outputs.version }}",/g' client-config/cpp.json
sed -i 's/"packageVersion.*,/"packageVersion": "${{ steps.version.outputs.version }}",/g' client-config/csharp-netcore.json
sed -i 's/"packageVersion.*,/"packageVersion": "${{ steps.version.outputs.version }}",/g' client-config/rust.json
sed -i 's/"npmVersion.*,/"npmVersion": "${{ steps.version.outputs.version }}",/g' client-config/ts-fetch.json
- run: chmod 777 ./gradlew
- name: Execute Gradle generateOpenApi
run: ./gradlew generateOpenApi
- name: Generate Clients
run: ./gradlew generateSwaggerCode
- name: upload openapi
uses: actions/upload-artifact@v4
with:
name: openapi-${{ steps.version.outputs.version }}
path: ./build/docs/swagger.json
- name: upload cpp client
uses: actions/upload-artifact@v4
with:
name: cpp-client
path: ./build/clients/cpp-client/*
- name: upload csharp client
uses: actions/upload-artifact@v4
with:
name: csharp-client
path: ./build/clients/csharp-client/*
- name: upload rust client
uses: actions/upload-artifact@v4
with:
name: rust-client
path: ./build/clients/rust-client/*
- name: upload ts client
uses: actions/upload-artifact@v4
with:
name: ts-client
path: ./build/clients/ts-fetch-client/*
- name: Checkout maa-copilot-client-ts
uses: actions/checkout@v4
with:
repository: MaaAssistantArknights/maa-copilot-client-ts
path: maa-copilot-client-ts
- name: Copy ts client into maa-copilot-client-ts
run: |
cp -rf build/clients/ts-fetch-client/* maa-copilot-client-ts/
- name: Create PR to maa-copilot-client-ts
id: cpr
uses: peter-evans/create-pull-request@v6
with:
path: maa-copilot-client-ts
author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
commit-message: 'release: ${{ steps.version.outputs.version }}'
title: 'release: ${{ steps.version.outputs.version }}'
body: https://github.com/MaaAssistantArknights/MaaBackendCenter/actions/runs/${{ github.run_id }}
branch: ts-client
delete-branch: true
token: ${{ secrets.TS_CLIENT_PAT }}
- name: Tag previous commit with version
if: ${{ steps.cpr.outputs.pull-request-number }}
run: |
cd maa-copilot-client-ts
git remote set-url origin https://${{ secrets.TS_CLIENT_PAT }}@github.com/MaaAssistantArknights/maa-copilot-client-ts.git
git checkout ts-client
git tag ${{ steps.version.outputs.version }}
git push --tags