From a92e229b087dff939f20b13ce7dd5ce09f414f35 Mon Sep 17 00:00:00 2001 From: KirIgor Date: Tue, 7 Jul 2026 16:08:56 +0600 Subject: [PATCH 1/2] fix --- .github/workflows/release.yml | 42 +++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..61b6377 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,42 @@ +name: Release + +on: + push: + tags: + - "v*" + +jobs: + gem: + runs-on: ubuntu-24.04 + steps: + - uses: actions/checkout@v4 + + - uses: ruby/setup-ruby@v1 + with: + ruby-version: "3.4" + bundler-cache: true + + - name: Build gem + run: bundle exec rake build + + - name: Push to RubyGems + run: gem push pkg/*.gem + env: + GEM_HOST_API_KEY: ${{ secrets.RUBYGEMS_API_KEY }} + + github-release: + needs: gem + runs-on: ubuntu-24.04 + permissions: + contents: write + steps: + - uses: actions/checkout@v4 + + - name: Create GitHub release + uses: actions/create-release@v1 + with: + tag_name: ${{ github.ref_name }} + release_name: ${{ github.ref_name }} + generate_release_notes: true + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 603a3d59343a4a53829ee089f0c7b2dc322d4853 Mon Sep 17 00:00:00 2001 From: KirIgor Date: Tue, 7 Jul 2026 16:09:17 +0600 Subject: [PATCH 2/2] fix --- Gemfile.lock | 2 +- lib/umbrellio_utils/version.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 422fede..5d06f19 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - umbrellio-utils (1.14.1) + umbrellio-utils (1.14.2) memery (~> 1) GEM diff --git a/lib/umbrellio_utils/version.rb b/lib/umbrellio_utils/version.rb index ef7ec64..e8905df 100644 --- a/lib/umbrellio_utils/version.rb +++ b/lib/umbrellio_utils/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module UmbrellioUtils - VERSION = "1.14.1" + VERSION = "1.14.2" end