bedrock: fallback to estimated token count when count-tokens API is u… #158
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 CLI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| # Prevent concurrent runs | |
| concurrency: | |
| group: release-cli | |
| cancel-in-progress: false | |
| jobs: | |
| check-version: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| version: ${{ steps.get-version.outputs.version }} | |
| tag_exists: ${{ steps.check-tag.outputs.exists }} | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| fetch-tags: true | |
| - name: Get version from file | |
| id: get-version | |
| run: echo "version=$(cat cli/version)" >> "$GITHUB_OUTPUT" | |
| - name: Check if tag exists | |
| id: check-tag | |
| run: | | |
| if git rev-parse "cli/v${{ steps.get-version.outputs.version }}" >/dev/null 2>&1; then | |
| echo "exists=true" >> "$GITHUB_OUTPUT" | |
| else | |
| echo "exists=false" >> "$GITHUB_OUTPUT" | |
| fi | |
| test-cli: | |
| needs: [check-version] | |
| if: needs.check-version.outputs.tag_exists == 'false' | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| fetch-tags: true | |
| - name: Set up Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: "1.26.1" | |
| - name: Run CLI tests | |
| working-directory: cli | |
| run: go test ./... | |
| release-cli: | |
| needs: [check-version, test-cli] | |
| if: needs.check-version.outputs.tag_exists == 'false' | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| outputs: | |
| success: ${{ steps.release.outputs.success }} | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| fetch-tags: true | |
| token: ${{ secrets.GH_TOKEN }} | |
| - name: Set up Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: "1.26.1" | |
| - name: Configure Git | |
| run: | | |
| git config user.name "GitHub Actions Bot" | |
| git config user.email "github-actions[bot]@users.noreply.github.com" | |
| - name: Release CLI | |
| id: release | |
| env: | |
| GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
| R2_ENDPOINT: ${{ secrets.R2_ENDPOINT }} | |
| R2_ACCESS_KEY_ID: ${{ secrets.R2_ACCESS_KEY_ID }} | |
| R2_SECRET_ACCESS_KEY: ${{ secrets.R2_SECRET_ACCESS_KEY }} | |
| R2_BUCKET: ${{ secrets.R2_BUCKET }} | |
| run: ./.github/workflows/scripts/release-cli.sh "${{ needs.check-version.outputs.version }}" | |
| push-mintlify-changelog: | |
| needs: [check-version, release-cli] | |
| if: needs.check-version.outputs.tag_exists == 'false' && needs.release-cli.result == 'success' | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| fetch-tags: true | |
| token: ${{ secrets.GH_TOKEN }} | |
| - name: Push Mintlify changelog | |
| run: | | |
| ./.github/workflows/scripts/push-cli-mintlify-changelog.sh "${{ needs.check-version.outputs.version }}" |