Skip to content

Commit 8dded49

Browse files
committed
chore: create release
1 parent 9d38430 commit 8dded49

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ on:
99
branches: [ main ]
1010
paths-ignore:
1111
- '*.md'
12+
workflow_dispatch:
1213

1314
env:
1415
RUBY_VER: 2.6
@@ -61,7 +62,7 @@ jobs:
6162

6263
cd:
6364
name: Build and Publish
64-
if: github.event_name == 'push' && needs.ci.outputs.release
65+
if: (github.event_name == 'push' || github.event_name == 'workflow_dispatch') && needs.ci.outputs.release
6566
needs: ci
6667
runs-on: ubuntu-latest
6768

@@ -100,6 +101,7 @@ jobs:
100101
ruby-version: ${{ env.RUBY_VER }}
101102

102103
- name: Install dependencies
104+
if: steps.conventional_changelog.outputs.skipped == 'false'
103105
run: |
104106
bundle config deployment true
105107
bundle install

0 commit comments

Comments
 (0)