File tree Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ concurrency:
5
5
cancel-in-progress : true
6
6
7
7
on :
8
+ workflow_call :
8
9
push :
9
10
branches :
10
11
- kiskolabs/add_rails_6.1_and_ruby_3_4
Original file line number Diff line number Diff line change
1
+ name : Deploy to RubyGems
2
+
3
+ on :
4
+ workflow_dispatch :
5
+ push :
6
+ tags :
7
+ - ' *'
8
+ branches :
9
+ - kiskolabs/gha-publish-to-rubygems
10
+
11
+ jobs :
12
+ test :
13
+ uses : ./.github/workflows/ci.yml
14
+ push :
15
+ runs-on : ubuntu-latest
16
+ needs : [test]
17
+ permissions :
18
+ contents : write
19
+ id-token : write
20
+ steps :
21
+ - name : Test
22
+ run : |
23
+ echo "Testing successful case"
24
+
25
+ # - uses: actions/checkout@v4
26
+ # - name: Set up Ruby
27
+ # uses: ruby/setup-ruby@v1
28
+ # with:
29
+ # bundler-cache: true
30
+ # ruby-version: 3.0
31
+
32
+ # # Release
33
+ # - uses: rubygems/release-gem@v1
You can’t perform that action at this time.
0 commit comments