mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-11-10 19:48:50 +00:00
Add Workflow to Finalize a Release
This commit is contained in:
parent
0928a60cd2
commit
03eadb846c
28
.github/workflows/finalize-release.yml
vendored
Normal file
28
.github/workflows/finalize-release.yml
vendored
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
name: Finalize Release
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch: # Manual trigger
|
||||||
|
inputs:
|
||||||
|
version:
|
||||||
|
description: The Spring Security release to finalize (e.g. 7.0.0-RC2)
|
||||||
|
required: true
|
||||||
|
|
||||||
|
env:
|
||||||
|
DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
perform-release:
|
||||||
|
name: Perform Release
|
||||||
|
needs: [ project-version ]
|
||||||
|
uses: spring-io/spring-security-release-tools/.github/workflows/perform-release.yml@v1
|
||||||
|
with:
|
||||||
|
should-perform-release: true
|
||||||
|
project-version: ${{ inputs.version }}
|
||||||
|
milestone-repo-url: https://repo1.maven.org/maven2
|
||||||
|
release-repo-url: https://repo1.maven.org/maven2
|
||||||
|
artifact-path: org/springframework/security/spring-security-core
|
||||||
|
slack-announcing-id: spring-security-announcing
|
||||||
|
secrets: inherit
|
||||||
Loading…
x
Reference in New Issue
Block a user