Skip to content

Commit

Permalink
trying some things
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Guretzki committed Feb 12, 2025
1 parent 7e90f13 commit 0e13101
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions .github/workflows/prepare_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ jobs:
SDK_VERSION: ${{ github.event.inputs.sdk-version }}

# Generating Docs (will show up as changes in the PR)
- name: Generate Docs
run: |
Scripts/generate_docc_documentation.sh
env:
LATEST_VERSION: ${{ github.event.inputs.sdk-version }}
# - name: Generate Docs
# run: |
# Scripts/generate_docc_documentation.sh
# env:
# LATEST_VERSION: ${{ github.event.inputs.sdk-version }}

# Sanitizing the Release Notes from the get-release-notes job
- name: Prepare Release Notes
Expand All @@ -50,10 +50,18 @@ jobs:
if [ -e $RELEASE_NOTES_FILE_PATH ]
then
echo "OLD RELEASE NOTES"
cat $RELEASE_NOTES_FILE_PATH
rm -rf $RELEASE_NOTES_FILE_PATH # Making sure we start a fresh document
fi
echo "UPDATED RELEASE NOTES (GENERATED)"
cat $RELEASE_NOTES
echo "$RELEASE_NOTES" >> $RELEASE_NOTES_FILE_PATH
echo "UPDATED RELEASE NOTES (FILE)"
cat $RELEASE_NOTES_FILE_PATH
env:
BASE_64_RELEASE_NOTES: ${{ needs.get-release-notes.outputs.RELEASE_NOTES }}

Expand Down

0 comments on commit 0e13101

Please sign in to comment.