We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21fb241 commit d3f6747Copy full SHA for d3f6747
1 file changed
.github/workflows/create_release.yml
@@ -64,10 +64,13 @@ jobs:
64
65
- name: Generate Release Notes
66
run: |
67
- if [[ "${{env.PREVIEW}}" == "true" ]]; then
68
- echo "**WARNING: This is an experimental version of the package. Bugs may and will be present. Be very careful!**" > release_notes.md
+ if [[ "${{env.PRERELEASE}}" == "true" ]]; then
+ echo "**WARNING: This is a test version of the package. Bugs may be present.**" > release_notes.md
69
echo "" >> release_notes.md
70
fi
71
+ echo "**Use at your own risk!!!**" >> release_notes.md
72
+ echo "" >> release_notes.md
73
+
74
python changelog.py >> release_notes.md
75
76
- name: Create Release
0 commit comments