diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 043fbb0..ed04b03 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,14 +33,18 @@ jobs: bundle install - name: Get GitHub OIDC Token - if: github.repository == 'stainless-sdks/brand.dev-ruby' + if: |- + github.repository == 'stainless-sdks/brand.dev-ruby' && + !startsWith(github.ref, 'refs/heads/stl/') id: github-oidc uses: actions/github-script@v8 with: script: core.setOutput('github_token', await core.getIDToken()); - name: Build and upload gem artifacts - if: github.repository == 'stainless-sdks/brand.dev-ruby' + if: |- + github.repository == 'stainless-sdks/brand.dev-ruby' && + !startsWith(github.ref, 'refs/heads/stl/') env: URL: https://pkg.stainless.com/s AUTH: ${{ steps.github-oidc.outputs.github_token }} diff --git a/.release-please-manifest.json b/.release-please-manifest.json index a6fc929..0d04112 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.28.1" + ".": "0.28.2" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 394e451..36f237a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.28.2 (2026-03-07) + +Full Changelog: [v0.28.1...v0.28.2](https://github.com/brand-dot-dev/ruby-sdk/compare/v0.28.1...v0.28.2) + +### Chores + +* **ci:** skip uploading artifacts on stainless-internal branches ([f31da40](https://github.com/brand-dot-dev/ruby-sdk/commit/f31da40ed1b0056693c8deea294bcf7f8ea157d9)) + ## 0.28.1 (2026-03-06) Full Changelog: [v0.28.0...v0.28.1](https://github.com/brand-dot-dev/ruby-sdk/compare/v0.28.0...v0.28.1) diff --git a/Gemfile.lock b/Gemfile.lock index 67d685b..2294a0c 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - brand.dev (0.28.1) + brand.dev (0.28.2) cgi connection_pool diff --git a/README.md b/README.md index 6f92a9d..f78f4b5 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ To use this gem, install via Bundler by adding the following to your application ```ruby -gem "brand.dev", "~> 0.28.1" +gem "brand.dev", "~> 0.28.2" ``` diff --git a/lib/brand_dev/version.rb b/lib/brand_dev/version.rb index 3aaf7fd..e143731 100644 --- a/lib/brand_dev/version.rb +++ b/lib/brand_dev/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module BrandDev - VERSION = "0.28.1" + VERSION = "0.28.2" end