Files
stream-applications/.github/workflows/central-sync-release.yml
Chris Bono ccd62fedb6 Update central-sync-release.yml
Increase release timeout to 10m

Signed-off-by: Chris Bono <chris.bono@broadcom.com>
2025-01-27 12:41:08 -06:00

24 lines
626 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
release-timeout: 1200