Skip to content

Commit 806bb49

Browse files
committed
Patching 4.0.14
1 parent d27fa5b commit 806bb49

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Release
2+
on:
3+
push:
4+
branches:
5+
- '4.0.x-release-patch'
6+
concurrency:
7+
group: ${{ github.workflow }}-${{ github.ref }}
8+
jobs:
9+
promote-release:
10+
name: Promote Release
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Set up JFrog CLI
14+
uses: jfrog/setup-jfrog-cli@dff217c085c17666e8849ebdbf29c8fe5e3995e6 # v4.5.2
15+
env:
16+
JF_ENV_SPRING: ${{ secrets.JF_ARTIFACTORY_SPRING }}
17+
- name: Promote build
18+
run: jfrog rt build-promote spring-ws-4.0.14 5 libs-release-local
19+
create-github-release:
20+
name: Create GitHub Release
21+
needs:
22+
- promote-release
23+
runs-on: ubuntu-latest
24+
steps:
25+
- name: Check Out Code
26+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
27+
- name: Create GitHub Release
28+
uses: ./.github/actions/create-github-release
29+
with:
30+
milestone: '4.0.14'
31+
token: ${{ secrets.GH_ACTIONS_REPO_TOKEN }}

0 commit comments

Comments
 (0)