mirror of
https://github.com/spring-projects/spring-security.git
synced 2026-02-25 06:34:59 +00:00
Bumps [spring-io/spring-security-release-tools/.github/workflows/perform-release.yml](https://github.com/spring-io/spring-security-release-tools) from 1.0.13 to 1.0.14. - [Release notes](https://github.com/spring-io/spring-security-release-tools/releases) - [Changelog](https://github.com/spring-io/spring-security-release-tools/blob/main/RELEASE.adoc) - [Commits](https://github.com/spring-io/spring-security-release-tools/compare/v1.0.13...729fed56d42122f88583aff1be35c0800b7d77e9) --- updated-dependencies: - dependency-name: spring-io/spring-security-release-tools/.github/workflows/perform-release.yml dependency-version: 1.0.14 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
28 lines
832 B
YAML
28 lines
832 B
YAML
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
|
|
uses: spring-io/spring-security-release-tools/.github/workflows/perform-release.yml@729fed56d42122f88583aff1be35c0800b7d77e9 # v1.0.14
|
|
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
|