瀏覽代碼

Added SDK to Rust

Alex Tran 2 年之前
父節點
當前提交
14dc679332
共有 1 個文件被更改,包括 22 次插入1 次删除
  1. 22 1
      .github/workflows/openapi-generator.yml

+ 22 - 1
.github/workflows/openapi-generator.yml

@@ -41,7 +41,7 @@ jobs:
           git pull origin main --allow-unrelated-histories
           git push origin main 2>&1 | grep -v 'To https'
 
-      - name: Generate Dart Client
+      - name: Generate Dart SDK
         uses: openapi-generators/openapitools-generator-action@v1
         with:
           generator: dart
@@ -58,6 +58,27 @@ jobs:
           git init
           git add .
           git commit -m "Update SDK"
+          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"
           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'