We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45f53be commit e003b90Copy full SHA for e003b90
2 files changed
.github/workflows/publish.yml
@@ -2,7 +2,6 @@ name: Publish
2
3
on:
4
workflow_dispatch:
5
- workflow_call:
6
7
jobs:
8
publish:
.github/workflows/release.yml
@@ -20,7 +20,14 @@ on:
20
21
22
if: ${{ github.event.inputs.publish == 'true' }}
23
- uses: ./.github/workflows/publish.yml
+ uses: jenly1314/actions/.github/workflows/reusable-publish.yml@v1
24
+ with:
25
+ java-version-file: '.github/workflows/.java-version'
26
+ secrets:
27
+ maven-username: ${{ secrets.MAVEN_CENTRAL_USERNAME }}
28
+ maven-password: ${{ secrets.MAVEN_CENTRAL_PASSWORD }}
29
+ gpg-secret-key: ${{ secrets.GPG_SECRET_KEY }}
30
+ gpg-secret-passphrase: ${{ secrets.GPG_SECRET_PASSPHRASE }}
31
32
release:
33
permissions:
0 commit comments