Skip to content

Commit 1736298

Browse files
committed
Tentative WF to push to Maven Central
1 parent 499f52d commit 1736298

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Manual push to central
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
buildName:
7+
description: 'The Artifactory Build Name'
8+
required: true
9+
type: string
10+
buildNumber:
11+
description: 'The Artifactory Build Number'
12+
required: true
13+
type: string
14+
15+
jobs:
16+
push-to-manen-central:
17+
uses: spring-io/spring-github-workflows/.github/workflows/spring-artifactory-promote-central.yml@main
18+
with:
19+
buildName: ${{ inputs.buildName }}
20+
buildNumber: ${{ inputs.buildNumber }}
21+
secrets:
22+
JF_ARTIFACTORY_SPRING: ${{ secrets.JF_ARTIFACTORY_SPRING }}
23+
OSSRH_URL: ${{ secrets.OSSRH_URL }}
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 }}
27+
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
28+
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}

0 commit comments

Comments
 (0)