We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2fc4b0 commit c1b3e87Copy full SHA for c1b3e87
.github/workflows/build-release.yml
@@ -1,6 +1,7 @@
1
name: Build & Release
2
3
on:
4
+ workflow_dispatch:
5
pull_request:
6
types: [opened, reopened]
7
release:
@@ -40,7 +41,7 @@ jobs:
40
41
permissions:
42
contents: 'read'
43
id-token: 'write'
- if: github.event_name == 'push' || github.event_name == 'pull_request'
44
+ if: github.event_name == 'push' || github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch'
45
steps:
46
47
- name: Retrieve from cache module folder
0 commit comments