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.
2 parents 1c33781 + c18b3d2 commit ea1e5a3Copy full SHA for ea1e5a3
.github/workflows/build.yml
@@ -3,7 +3,7 @@
3
4
name: Build JavaBot
5
6
-on: [push, pull_request]
+on: [push, pull_request, workflow_dispatch]
7
8
jobs:
9
build:
@@ -24,7 +24,7 @@ jobs:
24
publish:
25
runs-on: ubuntu-latest
26
needs: build
27
- if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
+ if: ${{ (github.event_name == 'push' && github.ref == 'refs/heads/main') || github.event_name == 'workflow_dispatch' }}
28
steps:
29
- uses: actions/checkout@v4
30
- name: Set up JDK 17
0 commit comments