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
7 changes: 6 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,12 @@ jobs:
npm --version
echo "repository=${GITHUB_REPOSITORY} workflow=release.yml ref=${RELEASE_TAG} environment=npm"
- name: Exchange GitHub OIDC for a package-scoped npm token
run: bun run scripts/exchange-npm-oidc.ts
env:
AUTOMATION_COMMIT: ${{ github.workflow_sha }}
run: |
git fetch origin "${AUTOMATION_COMMIT}" --depth=1
git show "${AUTOMATION_COMMIT}:scripts/exchange-npm-oidc.ts" > "${RUNNER_TEMP}/exchange-npm-oidc.ts"
bun run "${RUNNER_TEMP}/exchange-npm-oidc.ts"
- name: Install exact dependencies
working-directory: typescript
run: bun install --frozen-lockfile
Expand Down
2 changes: 1 addition & 1 deletion .sdk-source.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"schemaVersion": 1,
"sourceCommit": "763326ae6b5868711a24bb28f1afa21ae0b51b49",
"sourceCommit": "650b692a8b5794e0ee6795a30bb390cd0c8798f9",
"contract": "contracts/2026.07/public-sdk-contract.json",
"packages": [
"typescript"
Expand Down