File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change 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 }}
You can’t perform that action at this time.
0 commit comments