Skip to content

This Will Work At Some Point #4

This Will Work At Some Point

This Will Work At Some Point #4

Workflow file for this run

name: Release
on:
push:
branches:
- release-2.0.13-hotpatch
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
env:
DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
jobs:
create-github-release:
name: Create GitHub Release
runs-on: ubuntu-latest
steps:
- name: Check Out Code
uses: actions/checkout@v5
- name: Create GitHub Release
uses: ./.github/actions/create-github-release
with:
milestone: 2.0.13
token: ${{ secrets.GH_ACTIONS_REPO_TOKEN }}
announce-release-in-chat:
name: Announce Release in Chat
needs:
- create-github-release
runs-on: ubuntu-latest
steps:
- name: Announce Release in Chat
if: env.CHAT_WEBHOOK_URL
run: |
curl -X POST '${{ env.CHAT_WEBHOOK_URL }}' -H 'Content-Type: application/json' -d '{ text: "${{ github.event.repository.name }}-announcing `2.0.13`"}'
env:
CHAT_WEBHOOK_URL: ${{ secrets.SPRING_RELEASE_GCHAT_WEBHOOK_URL }}