fix(openai): remove reference to this.modelId on static method (#20471) #7950
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Release | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - release-v* | |
| paths: | |
| - '.changeset/**' | |
| - '.github/workflows/release.yml' | |
| workflow_dispatch: | |
| inputs: | |
| snapshot: | |
| description: 'Publish a snapshot release instead of a normal release' | |
| type: boolean | |
| default: false | |
| concurrency: | |
| group: 'release-${{ github.ref_name }}' | |
| cancel-in-progress: false | |
| permissions: | |
| contents: read | |
| jobs: | |
| release: | |
| name: Release | |
| runs-on: ubuntu-latest | |
| permissions: | |
| id-token: write | |
| contents: write | |
| pull-requests: write | |
| issues: write | |
| # do not attempt running in forks | |
| if: github.repository_owner == 'vercel' | |
| steps: | |
| - name: Configure Git | |
| run: | | |
| git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
| git config --global user.name "github-actions[bot]" | |
| - name: Checkout Repo | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| fetch-depth: 0 | |
| persist-credentials: false | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6.0.9 | |
| - name: Setup Node.js 24 | |
| uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 | |
| with: | |
| node-version: 24 | |
| - name: Install Dependencies | |
| run: pnpm i | |
| # Normal release path | |
| - name: Create Release Pull Request or Publish to npm | |
| if: inputs.snapshot != true | |
| id: changesets | |
| uses: changesets/action@a45c4d594aa4e2c509dc14a9f2b3b67ba3780d0d # v1 | |
| with: | |
| version: pnpm ci:version | |
| publish: pnpm ci:release | |
| setupGitUser: false | |
| # When using "github-api", all commits and tags are GPG-signed and attributed to the user or app who owns the GITHUB_TOKEN | |
| commitMode: 'github-api' | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Find release PR number | |
| if: inputs.snapshot != true && steps.changesets.outputs.published == 'true' | |
| id: release-pr | |
| run: echo "number=$(gh api repos/${{ github.repository }}/commits/${{ github.sha }}/pulls --jq '.[0].number')" >> "$GITHUB_OUTPUT" | |
| env: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Notify released PRs and issues | |
| if: inputs.snapshot != true && steps.changesets.outputs.published == 'true' | |
| run: | | |
| cd .github/scripts/notify-released | |
| npm install --no-save | |
| node index.mjs | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| PUBLISHED_PACKAGES: ${{ steps.changesets.outputs.publishedPackages }} | |
| PULL_REQUEST_NUMBER: ${{ steps.release-pr.outputs.number }} | |
| - name: Attach SLSA provenance to GitHub Releases | |
| if: inputs.snapshot != true && steps.changesets.outputs.published == 'true' | |
| run: | | |
| cd .github/scripts/upload-provenance | |
| npm install --no-save | |
| node index.mjs | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| PUBLISHED_PACKAGES: ${{ steps.changesets.outputs.publishedPackages }} | |
| # Snapshot release path | |
| - name: Add SHORT_SHA env property with commit short sha | |
| if: inputs.snapshot == true | |
| run: echo "SHORT_SHA=`echo ${{ github.sha }} | cut -c1-8`" >> $GITHUB_ENV | |
| - name: Delete pre.json if it exists | |
| if: inputs.snapshot == true | |
| run: rm -f .changeset/pre.json | |
| - name: Version Packages (snapshot) | |
| if: inputs.snapshot == true | |
| run: pnpm changeset version --snapshot ${SHORT_SHA} | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Clean Examples | |
| if: inputs.snapshot == true | |
| run: pnpm clean-examples | |
| - name: Build | |
| if: inputs.snapshot == true | |
| run: pnpm clean && pnpm build | |
| - name: Publish Snapshot Release | |
| if: inputs.snapshot == true | |
| run: pnpm changeset publish --no-git-tag --tag snapshot | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Notify snapshot release pull request | |
| if: inputs.snapshot == true | |
| run: | | |
| cd .github/scripts/notify-released | |
| npm install --no-save | |
| node notify-snapshot.mjs | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |