-
Notifications
You must be signed in to change notification settings - Fork 1
41 lines (38 loc) · 1.31 KB
/
api_integration.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
name: Basyx API Integration
on:
workflow_dispatch:
permissions:
contents: read
jobs:
test:
permissions:
contents: write # for Git to git push
name: Gen open API
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: set up go
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
with:
go-version: ">=1.17"
- name: retrieve api spec from swaggerhub
run: |
mkdir -p ./gen/source/
BASYX_SWAGGER="https://api.swaggerhub.com/apis/BaSyx/basyx_asset_administration_shell_repository_http_rest_api/v1/swagger.yaml?resolved=true"
curl "$BASYX_SWAGGER" > ./gen/source/basyx-aas.yaml
- name: generate go code
run: |
mkdir -p ./gen/go/
go install github.com/deepmap/oapi-codegen/cmd/oapi-codegen@latest
oapi-codegen gen/source/basyx-aas.yaml > ./gen/go/basyx.go
- name: commit & push
run: |
git add -N . # 新規ファイルを含める
if ! git diff --exit-code --quiet
then
git config user.name github-actions
git config user.email github-actions@github.com
git add .
git commit -m "Update"
git push
fi