File tree Expand file tree Collapse file tree 2 files changed +35
-1
lines changed Expand file tree Collapse file tree 2 files changed +35
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : Publish
2
+
3
+ on :
4
+ workflow_dispatch :
5
+
6
+ jobs :
7
+ publish :
8
+ runs-on : ubuntu-latest
9
+
10
+ steps :
11
+ - name : Checkout code
12
+ uses : actions/checkout@v4
13
+
14
+ - name : Set up Ruby
15
+ uses : ruby/setup-ruby@v1
16
+ with :
17
+ ruby-version : 3.3.6
18
+ bundler-cache : true
19
+
20
+ - name : Set RubyGems credentials
21
+ run : |
22
+ mkdir ~/.gem
23
+ echo ":rubygems_api_key: ${{secrets.RUBY_GEMS_KEY}}" > ~/.gem/credentials
24
+ chmod 0600 ~/.gem/credentials
25
+
26
+ - name : Set Git author
27
+ run : |
28
+ git config user.email "[email protected] "
29
+ git config user.name "Kit Engineering"
30
+
31
+ - name : Publish version
32
+ run : |
33
+ bundle exec rake build
34
+ bundle exec rake release
Original file line number Diff line number Diff line change 1
1
module Omniauth
2
2
module Kit
3
3
module Oauth2
4
- VERSION = "0.1.3 "
4
+ VERSION = "0.1.4-0 "
5
5
end
6
6
end
7
7
end
You can’t perform that action at this time.
0 commit comments