Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/scripts/build-osc-sdk.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ if [ -z "$GH_TOKEN" ]; then
fi

ghurl="https://api.github.com"
data="{\"ref\": \"${BRANCH}\", \"inputs\": {\"api_version\": \"$API_VERSION\"}"
data="{\"ref\": \"${BRANCH}\", \"inputs\": {\"api_version\": \"$API_VERSION\"}}"
curl \
-X POST \
-H "Authorization: token $GH_TOKEN" \
Expand Down
15 changes: 15 additions & 0 deletions .github/workflows/release-osc-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,21 @@ jobs:
GH_TOKEN: ${{ secrets.GH_TOKEN_OSC_SDK_PYTHON }}
API_VERSION: ${{ steps.release.outputs.TAG }}
run: .github/scripts/build-osc-sdk.sh osc-sdk-python
osc-sdk-python-async-typed-sdk:
runs-on: ubuntu-latest
continue-on-error: true
steps:
- uses: actions/checkout@v4
with:
ref: main
- name: Getting release details
id: release
run: echo ::set-output name=TAG::${GITHUB_REF#refs/tags/}
- name: Trigger osc-sdk-python async typed SDK build
env:
GH_TOKEN: ${{ secrets.GH_TOKEN_OSC_SDK_PYTHON }}
API_VERSION: ${{ steps.release.outputs.TAG }}
run: .github/scripts/build-osc-sdk.sh osc-sdk-python feat/async-typed-sdk
osc-sdk-rust:
runs-on: ubuntu-latest
steps:
Expand Down
Loading