File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Manually Deploy Artifactory Build to Maven Central
2
+
3
+ on :
4
+ workflow_dispatch :
5
+ inputs :
6
+ buildName :
7
+ description : ' Artifactory Build Name'
8
+ required : true
9
+ type : string
10
+ buildNumber :
11
+ description : ' Artifactory Build Number'
12
+ required : true
13
+ type : string
14
+
15
+ jobs :
16
+ deploy-to-central :
17
+
18
+ uses : spring-io/spring-github-workflows/.github/workflows/spring-artifactory-deploy-to-maven-central.yml@main
19
+ with :
20
+ buildName : ${{ inputs.buildName }}
21
+ buildNumber : ${{ inputs.buildNumber }}
22
+ secrets :
23
+ JF_ARTIFACTORY_SPRING : ${{ secrets.JF_ARTIFACTORY_SPRING }}
24
+ OSSRH_S01_TOKEN_USERNAME : ${{ secrets.OSSRH_S01_TOKEN_USERNAME }}
25
+ OSSRH_S01_TOKEN_PASSWORD : ${{ secrets.OSSRH_S01_TOKEN_PASSWORD }}
26
+ OSSRH_STAGING_PROFILE_NAME : ${{ secrets.OSSRH_STAGING_PROFILE_NAME }}
You can’t perform that action at this time.
0 commit comments