Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
billytrend-cohere committed Jan 15, 2025
1 parent 6677f14 commit 9a76bb8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/create-sdk-releases.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: create-sdk-releases

on:
push: {}
workflow_dispatch:
inputs:
bump_type:
Expand Down
4 changes: 2 additions & 2 deletions packages/autorelease/src/create-releases.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,8 @@ const createRelease = async (language: typeof languages[number], version: string
}

(async () => {
const bumpType = process.env.BUMP_TYPE as typeof bumpTypes[number] | undefined
const language = process.env.LANGUAGE as typeof languages[number] | "all" | undefined
const bumpType = "patch" as typeof bumpTypes[number] | undefined
const language = "all" as typeof languages[number] | "all" | undefined

if (!bumpType) {
throw new Error("BUMP_TYPE is not defined.")
Expand Down

0 comments on commit 9a76bb8

Please sign in to comment.