File tree Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : Release new version
2
+ on :
3
+ push :
4
+ branches : [ main ]
5
+ paths :
6
+ - ' lib/mcp/version.rb'
7
+ jobs :
8
+ publish_gem :
9
+ name : Release Gem Version to RubyGems.org
10
+ runs-on : ubuntu-latest
11
+ permissions :
12
+ id-token : write # IMPORTANT: this permission is mandatory for trusted publishing
13
+ contents : write # IMPORTANT: this permission is required for `rake release` to push the release tag
14
+ steps :
15
+ - uses : actions/checkout@v4
16
+ - name : Set up Ruby
17
+ uses : ruby/setup-ruby@v1
18
+ with :
19
+ bundler-cache : true
20
+ ruby-version : 3.4
21
+ - uses : rubygems/release-gem@v1
Original file line number Diff line number Diff line change 1
1
# frozen_string_literal: true
2
2
3
3
module MCP
4
- VERSION = "0.7 .0"
4
+ VERSION = "0.1 .0"
5
5
end
You can’t perform that action at this time.
0 commit comments