From 17085dd8a014154bcab34e80765f9ff7559e710e Mon Sep 17 00:00:00 2001 From: Alex Tran Date: Fri, 7 Oct 2022 09:39:22 -0500 Subject: [PATCH] Added SDK to Rust --- .github/workflows/openapi-generator.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/openapi-generator.yml b/.github/workflows/openapi-generator.yml index 6526726758..d773a20dc1 100644 --- a/.github/workflows/openapi-generator.yml +++ b/.github/workflows/openapi-generator.yml @@ -54,4 +54,10 @@ jobs: git config --global pull.rebase false git config --global user.email "alex.tran1502@gmail.com" git config --global user.name "Alex Tran" - cd dart-client && ls + cd dart-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'