Skip to content

Commit

Permalink
Tentative WF for pushing ot Maven Central
Browse files Browse the repository at this point in the history
  • Loading branch information
artembilan committed Feb 21, 2024
1 parent 78acbfc commit 1ab10e5
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/manual-promote-to-central.yml
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 }}

0 comments on commit 1ab10e5

Please sign in to comment.