We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b63aab0 commit 812997fCopy full SHA for 812997f
.github/workflows/central-sync-release.yml
@@ -0,0 +1,23 @@
1
+name: Central Sync Release
2
+
3
+on:
4
+ workflow_dispatch:
5
+ inputs:
6
+ stagedRepositoryId:
7
+ description: "Staged repository id"
8
+ required: true
9
10
+jobs:
11
+ build:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
15
+ # Request release promotion repo
16
+ - uses: jvalkeal/nexus-sync@v0
17
+ with:
18
+ url: ${{ secrets.OSSRH_URL }}
19
+ username: ${{ secrets.OSSRH_S01_TOKEN_USERNAME }}
20
+ password: ${{ secrets.OSSRH_S01_TOKEN_PASSWORD }}
21
+ staging-profile-name: ${{ secrets.OSSRH_STAGING_PROFILE_NAME }}
22
+ staging-repo-id: ${{ github.event.inputs.stagedRepositoryId }}
23
+ release: true
0 commit comments