1
0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2025-01-09 05:16:47 +01:00
immich/.github/workflows/openapi-generator.yml

84 lines
3.1 KiB
YAML
Raw Normal View History

2022-10-06 21:59:54 +02:00
name: Generate OpenAPI SDK
on:
workflow_dispatch:
push:
branches: [main]
jobs:
generate-typescript-axios:
runs-on: ubuntu-latest
2022-10-06 22:11:09 +02:00
name: OpenAPI Generator
2022-10-06 21:59:54 +02:00
steps:
# Checkout your code
- name: Checkout
2022-10-06 22:48:38 +02:00
uses: actions/checkout@v3
with:
token: ${{ secrets.GH_TOKEN }}
2022-10-06 21:59:54 +02:00
# Use the action to generate a client package
# This uses the default path for the openapi document and thus assumes there is an openapi.json in the current workspace.
- name: Generate Typescript Axios Client
uses: openapi-generators/openapitools-generator-action@v1
with:
generator: typescript-axios
generator-tag: v6.2.0
openapi-file: server/immich-openapi-specs.json
# Do something with the generated client (likely publishing it somewhere)
2022-10-07 00:23:05 +02:00
- name: Push to typescript repo
2022-10-06 21:59:54 +02:00
run: |
2022-10-06 22:27:31 +02:00
git config --global init.defaultBranch main
2022-10-06 22:34:42 +02:00
git config --global pull.rebase false
2022-10-06 23:15:36 +02:00
git config --global user.email "alex.tran1502@gmail.com"
git config --global user.name "Alex Tran"
2022-10-06 22:21:17 +02:00
cd typescript-axios-client
git init
git add .
git commit -m "Update SDK"
2022-10-06 23:15:36 +02:00
git remote add origin https://immich-app:"${{ secrets.GH_TOKEN }}"@github.com/immich-app/immich-sdk-typescript-axios.git
2022-10-06 22:40:01 +02:00
git pull origin main --allow-unrelated-histories
2022-10-06 22:38:38 +02:00
git push origin main 2>&1 | grep -v 'To https'
2022-10-07 00:23:05 +02:00
2022-10-07 16:46:10 +02:00
- name: Generate Dart SDK
2022-10-07 00:23:05 +02:00
uses: openapi-generators/openapitools-generator-action@v1
with:
generator: dart
generator-tag: v6.2.0
openapi-file: server/immich-openapi-specs.json
- name: Push to Dart repo
run: |
git config --global init.defaultBranch main
git config --global pull.rebase false
git config --global user.email "alex.tran1502@gmail.com"
git config --global user.name "Alex Tran"
2022-10-07 16:39:22 +02:00
cd dart-client
git init
git add .
git commit -m "Update SDK"
2022-10-07 16:46:10 +02:00
git remote add origin https://immich-app:"${{ secrets.GH_TOKEN }}"@github.com/immich-app/immich-sdk-dart.git
git pull origin main --allow-unrelated-histories
git push origin main 2>&1 | grep -v 'To https'
- name: Generate Rust SDK
uses: openapi-generators/openapitools-generator-action@v1
with:
generator: rust
generator-tag: v6.2.0
openapi-file: server/immich-openapi-specs.json
- name: Push to Rust repo
run: |
git config --global init.defaultBranch main
git config --global pull.rebase false
git config --global user.email "alex.tran1502@gmail.com"
git config --global user.name "Alex Tran"
cd rust-client
git init
git add .
git commit -m "Update SDK"
2022-10-07 16:39:22 +02:00
git remote add origin https://immich-app:"${{ secrets.GH_TOKEN }}"@github.com/immich-app/immich-sdk-rust.git
git pull origin main --allow-unrelated-histories
git push origin main 2>&1 | grep -v 'To https'