This commit is contained in:
Alex Tran 2022-10-06 15:27:31 -05:00
parent f9af61a5ca
commit 6804e3dc73
No known key found for this signature in database
GPG key ID: E4954BC787B85C8A

View file

@ -14,10 +14,6 @@ jobs:
# Checkout your code
- name: Checkout
uses: actions/checkout@v2
run: |
git config --global init.defaultBranch main
git config --global user.email "immichbot@immich.app"
git config --global user.name "Immich Bot"
# 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.
@ -31,6 +27,9 @@ jobs:
# Do something with the generated client (likely publishing it somewhere)
- name: Do something with the client
run: |
git config --global init.defaultBranch main
git config --global user.email "immichbot@immich.app"
git config --global user.name "Immich Bot"
cd typescript-axios-client
git init
git add .