Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 93c9ece

Browse files
committedMar 11, 2022
chore: create release
1 parent 8dded49 commit 93c9ece

File tree

1 file changed

+10
-12
lines changed

1 file changed

+10
-12
lines changed
 

‎.github/workflows/main.yml

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,16 @@ jobs:
8181
run: npm install
8282
working-directory: .github/config
8383

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+
8494
- name: Conventional Changelog Action
8595
id: conventional_changelog
8696
uses: TriPSs/conventional-changelog-action@v3
@@ -94,18 +104,6 @@ jobs:
94104
pre-changelog-generation: '.github/config/pre_changelog_hook.js'
95105
config-file-path: '.github/config/config.js'
96106

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-
109107
- name: Build gem
110108
if: steps.conventional_changelog.outputs.skipped == 'false'
111109
run: gem build *.gemspec

0 commit comments

Comments
 (0)
Please sign in to comment.