Skip to content

Commit

Permalink
Fix string interpolation in GChat release notification
Browse files Browse the repository at this point in the history
  • Loading branch information
sjohnr committed Aug 19, 2024
1 parent 928f1c5 commit c68757a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/perform-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ jobs:
ANNOUNCING_ID: ${{ inputs.slack-announcing-id }}
WEBHOOK_URL: ${{ secrets.SPRING_RELEASE_GCHAT_WEBHOOK_URL }}
run: |
curl -X POST '$WEBHOOK_URL' -H 'Content-Type: application/json' -d '{ text: "$ANNOUNCING_ID `$VERSION` is available now" }' || true
curl -X POST '${{ env.WEBHOOK_URL }}' -H 'Content-Type: application/json' -d '{ "text": "${{ env.ANNOUNCING_ID }} `${{ env.VERSION }}` is available now" }' || true
next-development-version:
name: Next Development Version
runs-on: ubuntu-latest
Expand Down

0 comments on commit c68757a

Please sign in to comment.