Patching 4.0.14 #1
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Release | |
| on: | |
| push: | |
| branches: | |
| - '4.0.x-release-patch' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| jobs: | |
| promote-release: | |
| name: Promote Release | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set up JFrog CLI | |
| uses: jfrog/setup-jfrog-cli@dff217c085c17666e8849ebdbf29c8fe5e3995e6 # v4.5.2 | |
| env: | |
| JF_ENV_SPRING: ${{ secrets.JF_ARTIFACTORY_SPRING }} | |
| - name: Promote build | |
| run: jfrog rt build-promote spring-ws-4.0.14 5 libs-release-local | |
| create-github-release: | |
| name: Create GitHub Release | |
| needs: | |
| - promote-release | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check Out Code | |
| uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
| - name: Create GitHub Release | |
| uses: ./.github/actions/create-github-release | |
| with: | |
| milestone: '4.0.14' | |
| token: ${{ secrets.GH_ACTIONS_REPO_TOKEN }} |