Skip to content

Commit

Permalink
Update prepare_release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
goergisn authored Jan 31, 2025
1 parent e4173af commit cc5816d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/prepare_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ jobs:
# Sanitizing the Release Notes from the get-release-notes job
- name: Prepare Release Notes
run: |
RELEASE_NOTES=$(printf '%b' "$ESCAPED_RELEASE_NOTES")
RELEASE_NOTES=$(echo "$BASE_64_RELEASE_NOTES" | base64 --decode)
rm -rf "${{ github.workspace }}/release_notes.md"
echo "# Changes since last release
$RELEASE_NOTES" >> "${{ github.workspace }}/release_notes.md"
env:
ESCAPED_RELEASE_NOTES: ${{ needs.get-release-notes.outputs.RELEASE_NOTES }}
BASE_64_RELEASE_NOTES: ${{ needs.get-release-notes.outputs.RELEASE_NOTES }}

# Creates a release/[sdk-version] branch with a PR to develop
- name: Create Pull Request
Expand Down

0 comments on commit cc5816d

Please sign in to comment.