Skip to content

Commit 0583176

Browse files
committed
Add Separate Publish Release Workflow
1 parent 1014bca commit 0583176

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Publish Release
2+
3+
on:
4+
workflow_dispatch: # Manual trigger
5+
inputs:
6+
version:
7+
description: "The release to publish"
8+
required: true
9+
10+
jobs:
11+
perform-release:
12+
name: Perform Release
13+
uses: spring-io/spring-security-release-tools/.github/workflows/perform-release.yml@v1
14+
with:
15+
should-perform-release: true
16+
project-version: ${{ inputs.version }}
17+
milestone-repo-url: https://repo1.maven.org/maven2
18+
release-repo-url: https://repo1.maven.org/maven2
19+
artifact-path: org/springframework/ldap/spring-ldap-core
20+
slack-announcing-id: spring-ldap-announcing
21+
secrets: inherit

0 commit comments

Comments
 (0)