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 c9d24e8 commit 8557aebCopy full SHA for 8557aeb
.github/workflows/ci.yml
@@ -1,6 +1,8 @@
1
name: CI
2
3
-on: [push]
+on:
4
+ push:
5
+ workflow_dispatch:
6
7
# Cancel previous workflows on previous push
8
concurrency:
@@ -72,7 +74,7 @@ jobs:
72
74
73
75
gem-publish:
76
runs-on: ubuntu-latest
- if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
77
+ if: (github.event_name == 'push' && contains(github.ref, 'refs/tags/')) || github.event_name == 'workflow_dispatch'
78
steps:
79
- name: Checkout repository
80
uses: actions/checkout@v4
0 commit comments