Skip to content

Commit c68757a

Browse files
committed
Fix string interpolation in GChat release notification
1 parent 928f1c5 commit c68757a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/perform-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ jobs:
120120
ANNOUNCING_ID: ${{ inputs.slack-announcing-id }}
121121
WEBHOOK_URL: ${{ secrets.SPRING_RELEASE_GCHAT_WEBHOOK_URL }}
122122
run: |
123-
curl -X POST '$WEBHOOK_URL' -H 'Content-Type: application/json' -d '{ text: "$ANNOUNCING_ID `$VERSION` is available now" }' || true
123+
curl -X POST '${{ env.WEBHOOK_URL }}' -H 'Content-Type: application/json' -d '{ "text": "${{ env.ANNOUNCING_ID }} `${{ env.VERSION }}` is available now" }' || true
124124
next-development-version:
125125
name: Next Development Version
126126
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)