Files
stream-applications/.github/workflows/central-sync-release.yml
2023-10-07 23:02:11 -05:00

23 lines
596 B
YAML

name: Central Sync (Release)
on:
workflow_dispatch:
inputs:
stagedRepositoryId:
description: "Staged repository id"
required: true
permissions: {}
jobs:
build:
runs-on: ubuntu-latest
steps:
- 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 }}
release: true