-
Notifications
You must be signed in to change notification settings - Fork 626
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tentative WF for pushing ot Maven Central
- Loading branch information
1 parent
78acbfc
commit 1ab10e5
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Manual push to central | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
buildName: | ||
description: 'The Artifactory Build Name' | ||
required: true | ||
type: string | ||
buildNumber: | ||
description: 'The Artifactory Build Number' | ||
required: true | ||
type: string | ||
|
||
jobs: | ||
push-to-manen-central: | ||
uses: spring-io/spring-github-workflows/.github/workflows/spring-artifactory-promote-central.yml@main | ||
with: | ||
buildName: ${{ inputs.buildName }} | ||
buildNumber: ${{ inputs.buildNumber }} | ||
secrets: | ||
JF_ARTIFACTORY_SPRING: ${{ secrets.JF_ARTIFACTORY_SPRING }} | ||
OSSRH_URL: ${{ secrets.OSSRH_URL }} | ||
OSSRH_S01_TOKEN_USERNAME: ${{ secrets.OSSRH_S01_TOKEN_USERNAME }} | ||
OSSRH_S01_TOKEN_PASSWORD: ${{ secrets.OSSRH_S01_TOKEN_PASSWORD }} | ||
OSSRH_STAGING_PROFILE_NAME: ${{ secrets.OSSRH_STAGING_PROFILE_NAME }} | ||
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} | ||
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }} |