File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 30
30
get_sdk_version :
31
31
runs-on : ubuntu-latest
32
32
outputs :
33
- version : ${{ steps.version.outputs.version }}
33
+ sdk_version : ${{ steps.version.outputs.sdk_version }}
34
34
steps :
35
35
- uses : actions/checkout@v4
36
36
with :
39
39
sparse-checkout-cone-mode : false
40
40
- id : version
41
41
run : |
42
- VERSION =$(cat VERSION)
43
- echo "version=$VERSION " >> $GITHUB_OUTPUT
44
- echo "SDK Version: $VERSION "
42
+ SDK_VERSION =$(cat VERSION)
43
+ echo "sdk_version=$SDK_VERSION " >> $GITHUB_OUTPUT
44
+ echo "SDK Version: $SDK_VERSION "
45
45
46
46
# まず pyi を生成する
47
47
# クロスコンパイル環境だと pyi が生成できないので、
@@ -201,7 +201,7 @@ jobs:
201
201
- run : |
202
202
# 仮想環境を作成してテスト
203
203
uv venv --python ${{ matrix.version.python }}
204
- uv pip install dist/sora_sdk-${{ needs.get_sdk_version.outputs.version }}-cp${{ matrix.version.pkg }}-cp${{ matrix.version.pkg }}-${{ matrix.platform.pytag }}.whl
204
+ uv pip install dist/sora_sdk-${{ needs.get_sdk_version.outputs.sdk_version }}-cp${{ matrix.version.pkg }}-cp${{ matrix.version.pkg }}-${{ matrix.platform.pytag }}.whl
205
205
uv run python -c "import sora_sdk; print(sora_sdk.get_video_codec_capability().to_json())"
206
206
207
207
build_ubuntu_arm :
You can’t perform that action at this time.
0 commit comments