Skip to content

Commit 27371ec

Browse files
committed
Add tentative manual-deploy-to-central.yml
1 parent 8178de7 commit 27371ec

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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 }}

0 commit comments

Comments
 (0)