File tree 1 file changed +10
-12
lines changed 1 file changed +10
-12
lines changed Original file line number Diff line number Diff line change 81
81
run : npm install
82
82
working-directory : .github/config
83
83
84
+ - name : Setup Ruby
85
+ uses : ruby/setup-ruby@v1
86
+ with :
87
+ ruby-version : ${{ env.RUBY_VER }}
88
+
89
+ - name : Install dependencies
90
+ run : |
91
+ bundle config deployment true
92
+ bundle install
93
+
84
94
- name : Conventional Changelog Action
85
95
id : conventional_changelog
86
96
uses : TriPSs/conventional-changelog-action@v3
@@ -94,18 +104,6 @@ jobs:
94
104
pre-changelog-generation : ' .github/config/pre_changelog_hook.js'
95
105
config-file-path : ' .github/config/config.js'
96
106
97
- - name : Setup Ruby
98
- if : steps.conventional_changelog.outputs.skipped == 'false'
99
- uses : ruby/setup-ruby@v1
100
- with :
101
- ruby-version : ${{ env.RUBY_VER }}
102
-
103
- - name : Install dependencies
104
- if : steps.conventional_changelog.outputs.skipped == 'false'
105
- run : |
106
- bundle config deployment true
107
- bundle install
108
-
109
107
- name : Build gem
110
108
if : steps.conventional_changelog.outputs.skipped == 'false'
111
109
run : gem build *.gemspec
You can’t perform that action at this time.
0 commit comments