Central Sync Close #5
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
name: Central Sync Close | |
on: | |
workflow_dispatch: | |
inputs: | |
stagedRepositoryId: | |
description: "Staged repository id" | |
required: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
# Request close promotion repo | |
- uses: jvalkeal/nexus-sync@v0 | |
with: | |
url: ${{ secrets.OSSRH_URL }} | |
username: ${{ secrets.OSSRH_S01_TOKEN_USERNAME }} | |
password: ${{ secrets.OSSRH_S01_TOKEN_PASSWORD }} | |
staging-profile-name: ${{ secrets.OSSRH_STAGING_PROFILE_NAME }} | |
staging-repo-id: ${{ github.event.inputs.stagedRepositoryId }} | |
close: true |