Skip to content

Commit 6deccbe

Browse files
committed
✅ allow publishing to maven manually
1 parent ab67a9a commit 6deccbe

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/maven-publish.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,14 @@ on:
44
release:
55
types: [ published ]
66

7+
# Allows running this workflow manually from the Actions tab
8+
workflow_dispatch:
9+
710
jobs:
811
publish:
912
runs-on: ubuntu-latest
1013
steps:
11-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1215
with:
1316
submodules: recursive
1417
- id: install-secret-key
@@ -18,7 +21,7 @@ jobs:
1821
gpg --list-secret-keys --keyid-format LONG
1922
2023
- name: Set up Maven Central Repository
21-
uses: actions/setup-java@v3
24+
uses: actions/setup-java@v4
2225
with:
2326
java-version: "8"
2427
distribution: "adopt"

0 commit comments

Comments
 (0)