Skip to content

Commit 3bfc903

Browse files
committed
ci: fix version detection
1 parent fc1b9e8 commit 3bfc903

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
run: bash ./generate.sh
3232
- name: Check version number
3333
run: |
34-
echo "spec_version=$(grep "version" ./package.json | cut -d "\"" -f 4)" >> $GITHUB_ENV
34+
echo "spec_version=$(grep "VERSION =" setup.py | cut -d "\"" -f 2)" >> $GITHUB_ENV
3535
- name: Print version number
3636
run: echo ${{ env.spec_version }}
3737
- name: Deploy SDK back into main branch

vrchatapi/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -685,7 +685,7 @@ def __init__(self, settings=None, params_map=None, root_map=None,
685685
self.collection_format_map = root_map['collection_format_map']
686686
self.headers_map = headers_map
687687
self.api_client = api_client
688-
self.callable = callable
688+
self.callable = callable #boop
689689

690690
def __validate_inputs(self, kwargs):
691691
for param in self.params_map['enum']:

0 commit comments

Comments
 (0)