diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index edd4142..101cc9c 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -15,14 +15,11 @@ jobs: steps: - uses: actions/checkout@v4 - with: - persist-credentials: false - - name: Set up Ruby - uses: ruby/setup-ruby@v1 - with: - ruby-version: '3.2' - bundler-cache: true + - name: Configure trusted publishing credentials + uses: rubygems/configure-rubygems-credentials@v1.0.0 - - name: Release Gem - uses: rubygems/release-gem@v1 + - name: Publish to RubyGems + run: | + gem build eventq.gemspec + gem push eventq-*.gem diff --git a/EVENTQ_VERSION b/EVENTQ_VERSION index 8089590..f77856a 100644 --- a/EVENTQ_VERSION +++ b/EVENTQ_VERSION @@ -1 +1 @@ -4.3.0 +4.3.1 diff --git a/Rakefile b/Rakefile deleted file mode 100644 index c702cfc..0000000 --- a/Rakefile +++ /dev/null @@ -1 +0,0 @@ -require 'bundler/gem_tasks'