File tree 4 files changed +32
-31
lines changed
4 files changed +32
-31
lines changed Original file line number Diff line number Diff line change
1
+ name : Push Gem
2
+
3
+ on :
4
+ push :
5
+ tags :
6
+ - v*
7
+
8
+ permissions :
9
+ contents : read
10
+
11
+ jobs :
12
+ push :
13
+ if : github.repository_owner == 'karafka'
14
+ runs-on : ubuntu-latest
15
+
16
+ permissions :
17
+ contents : write
18
+ id-token : write
19
+
20
+ steps :
21
+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
22
+ with :
23
+ fetch-depth : 0
24
+
25
+ - name : Set up Ruby
26
+ uses : ruby/setup-ruby@84684c07c1965536eb4802c8daf1a77968df0cb1 # v1.239.0
27
+ with :
28
+ bundler-cache : true
29
+
30
+ # Release
31
+ - uses : rubygems/release-gem@9e85cb11501bebc2ae661c1500176316d3987059 # v1
Original file line number Diff line number Diff line change 7
7
- [ Enhancement] Roll out experimental jruby support.
8
8
- [ Fix] Fix issue where post-closed producer C topics refs would not be cleaned.
9
9
- [ Fix] Fiber causes Segmentation Fault.
10
+ - [ Change] Move to trusted-publishers and remove signing since no longer needed.
10
11
11
12
## 0.21.0 (2025-02-13)
12
13
- [ Enhancement] Bump librdkafka to ` 2.8.0 `
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -17,11 +17,6 @@ Gem::Specification.new do |gem|
17
17
gem . version = Rdkafka ::VERSION
18
18
gem . required_ruby_version = '>= 3.1'
19
19
gem . extensions = %w( ext/Rakefile )
20
- gem . cert_chain = %w[ certs/cert.pem ]
21
-
22
- if $PROGRAM_NAME. end_with? ( 'gem' )
23
- gem . signing_key = File . expand_path ( '~/.ssh/gem-private_key.pem' )
24
- end
25
20
26
21
gem . add_dependency 'ffi' , '~> 1.15'
27
22
gem . add_dependency 'mini_portile2' , '~> 2.6'
You can’t perform that action at this time.
0 commit comments