We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d38430 commit 8dded49Copy full SHA for 8dded49
.github/workflows/main.yml
@@ -9,6 +9,7 @@ on:
9
branches: [ main ]
10
paths-ignore:
11
- '*.md'
12
+ workflow_dispatch:
13
14
env:
15
RUBY_VER: 2.6
@@ -61,7 +62,7 @@ jobs:
61
62
63
cd:
64
name: Build and Publish
- if: github.event_name == 'push' && needs.ci.outputs.release
65
+ if: (github.event_name == 'push' || github.event_name == 'workflow_dispatch') && needs.ci.outputs.release
66
needs: ci
67
runs-on: ubuntu-latest
68
@@ -100,6 +101,7 @@ jobs:
100
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
0 commit comments