Skip to content

Commit

Permalink
Remove notes
Browse files Browse the repository at this point in the history
  • Loading branch information
seljabali committed Apr 27, 2024
1 parent a2ed065 commit 3aabfa0
Showing 1 changed file with 0 additions and 36 deletions.
36 changes: 0 additions & 36 deletions .github/workflows/create-tag-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,42 +37,6 @@ jobs:
NOTES="${NOTES//$'\r'/'%0D'}"
echo "::set-output name=notes::$NOTES"
# - name: Generate release notes v1
# id: generate-notes-v1
# run: |
# NOTES=$(python .github/scripts/generate_release_notes.py)
# NOTES="${NOTES//'%'/'%25'}"
# NOTES="${NOTES//$'\n'/'%0A'}"
# NOTES="${NOTES//$'\r'/'%0D'}"
# echo "notes=$NOTES" >> $GITHUB_OUTPUT
# https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/

# - name: Generate release notes v2
# id: generate-notes-v2
# run: |
# NOTES=$(python .github/scripts/generate_release_notes.py')
# # Split NOTES into an array of lines
# IFS=$'\n' read -d '' -r -a lines <<< "$NOTES"
# # Append each line individually
# for line in "${lines[@]}"; do
# echo "notes<<EOF" >> $GITHUB_OUTPUT
# echo "$line" >> $GITHUB_OUTPUT
# echo "EOF" >> $GITHUB_OUTPUT
# done

# - name: Generate release notes and encode
# id: generate-notes-v3
# run: |
# NOTES=$(python .github/scripts/generate_release_notes.py | base64)
# echo "notes=$NOTES" >> $GITHUB_OUTPUT

# - name: Generate release notes
# id: generate-notes
# run: |
# echo "notes<<EOF" >> $GITHUB_OUTPUT
# python .github/scripts/generate_release_notes.py'
# echo "EOF" >> $GITHUB_OUTPUT

- name: Create the new tag
run: |
git config user.name github-actions
Expand Down

0 comments on commit 3aabfa0

Please sign in to comment.