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 95d5cc2 commit 2dbc7d0Copy full SHA for 2dbc7d0
.github/workflows/build.yml
@@ -4,11 +4,11 @@ on:
4
workflow_call:
5
inputs:
6
action:
7
- required: false
+ required: true
8
+ type: string
9
+ github_tag:
10
11
type: string
- # github_tag:
- # required: true
- # type: string
12
secrets:
13
MAVEN_SIGNING_KEY_BASE64:
14
required: true
@@ -36,6 +36,5 @@ jobs:
36
MAVEN_SIGNING_PASSPHRASE: ${{ secrets.MAVEN_SIGNING_PASSPHRASE }}
37
MAVEN_CENTRAL_USERNAME: ${{ secrets.MAVEN_CENTRAL_USERNAME }}
38
MAVEN_CENTRAL_PASSWORD: ${{ secrets.MAVEN_CENTRAL_PASSWORD }}
39
- # run: GITHUB_TAG=${{ inputs.github_tag }} ./gradlew ${{ inputs.action }}
40
- run: echo "Demo run success"
+ run: GITHUB_TAG=${{ inputs.github_tag }} ./gradlew ${{ inputs.action }}
41
0 commit comments