diff --git a/.github/workflows/sdk_generation.yaml b/.github/workflows/sdk_generation.yaml index 0c2749f..c100ac0 100644 --- a/.github/workflows/sdk_generation.yaml +++ b/.github/workflows/sdk_generation.yaml @@ -1,34 +1,35 @@ name: Generate permissions: - checks: write - contents: write - pull-requests: write - statuses: write + checks: write + contents: write + pull-requests: write + statuses: write "on": - workflow_dispatch: - inputs: - force: - description: Force generation of SDKs - type: boolean - default: false - push_code_samples_only: - description: Force push only code samples from SDK generation - type: boolean - default: false - set_version: - description: optionally set a specific SDK version - type: string - schedule: - - cron: 0 0 * * * + workflow_dispatch: + inputs: + force: + description: Force generation of SDKs + type: boolean + default: false + push_code_samples_only: + description: Force push only code samples from SDK generation + type: boolean + default: false + set_version: + description: optionally set a specific SDK version + type: string + schedule: + - cron: 0 0 * * * jobs: - generate: - uses: speakeasy-api/sdk-generation-action/.github/workflows/workflow-executor.yaml@v15 - with: - force: ${{ github.event.inputs.force }} - mode: pr - push_code_samples_only: ${{ fromJSON(github.event.inputs.push_code_samples_only != '' && github.event.inputs.push_code_samples_only || 'false') }} - set_version: ${{ github.event.inputs.set_version }} - speakeasy_version: latest - secrets: - github_access_token: ${{ secrets.GITHUB_TOKEN }} - speakeasy_api_key: ${{ secrets.SPEAKEASY_API_KEY }} + generate: + uses: speakeasy-api/sdk-generation-action/.github/workflows/workflow-executor.yaml@v15 + with: + force: ${{ github.event.inputs.force }} + mode: pr + push_code_samples_only: ${{ fromJSON(github.event.inputs.push_code_samples_only != '' && github.event.inputs.push_code_samples_only || 'false') }} + set_version: ${{ github.event.inputs.set_version }} + speakeasy_version: latest + secrets: + github_access_token: ${{ secrets.GITHUB_TOKEN }} + npm_token: ${{ secrets.NPM_TOKEN }} + speakeasy_api_key: ${{ secrets.SPEAKEASY_API_KEY }} diff --git a/.github/workflows/sdk_publish.yaml b/.github/workflows/sdk_publish.yaml new file mode 100644 index 0000000..cfba67c --- /dev/null +++ b/.github/workflows/sdk_publish.yaml @@ -0,0 +1,20 @@ +name: Publish +permissions: + checks: write + contents: write + pull-requests: write + statuses: write +"on": + push: + branches: + - main + paths: + - RELEASES.md + - '*/RELEASES.md' +jobs: + publish: + uses: speakeasy-api/sdk-generation-action/.github/workflows/sdk-publish.yaml@v15 + secrets: + github_access_token: ${{ secrets.GITHUB_TOKEN }} + npm_token: ${{ secrets.NPM_TOKEN }} + speakeasy_api_key: ${{ secrets.SPEAKEASY_API_KEY }} diff --git a/.speakeasy/workflow.yaml b/.speakeasy/workflow.yaml index 6895574..8354a60 100644 --- a/.speakeasy/workflow.yaml +++ b/.speakeasy/workflow.yaml @@ -10,6 +10,9 @@ targets: livepeer-ai-ts: target: typescript source: livepeer-ai-OAS + publish: + npm: + token: $npm_token codeSamples: output: codeSamples.yaml registry: diff --git a/jsr.json b/jsr.json index a7a9716..452e7d5 100644 --- a/jsr.json +++ b/jsr.json @@ -1,12 +1,12 @@ { - "name": "livepeer-ai", + "name": "@livepeer/ai", "version": "0.2.0", "exports": { - ".": "./src/index.ts", - "./models/errors": "./src/models/errors/index.ts", - "./models/components": "./src/models/components/index.ts", + ".": "./src/index.ts", + "./models/errors": "./src/models/errors/index.ts", + "./models/components": "./src/models/components/index.ts", "./models/operations": "./src/models/operations/index.ts", "./lib/config": "./src/lib/config.ts", "./lib/http": "./src/lib/http.ts", diff --git a/package-lock.json b/package-lock.json index 338716f..61b398c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { - "name": "livepeer-ai", + "name": "@livepeer/ai", "version": "0.2.0", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "livepeer-ai", + "name": "@livepeer/ai", "version": "0.2.0", "devDependencies": { "@types/node": "^18.19.3", diff --git a/package.json b/package.json index e612e5c..076d897 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "livepeer-ai", + "name": "@livepeer/ai", "version": "0.2.0", "author": "Livepeer", "main": "./index.js", @@ -26,7 +26,5 @@ "typescript": "^5.4.5", "zod": "^3.23.4" }, - "dependencies": { - - } + "dependencies": {} }