Skip to content

Commit 90e2807

Browse files
committed
chore: sourcing the script
1 parent 2fd60b8 commit 90e2807

2 files changed

Lines changed: 4 additions & 6 deletions

File tree

.github/workflows/ci_check_release.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -213,17 +213,15 @@ jobs:
213213
id: changelog
214214
run: |
215215
# Make the script executable
216-
pwd
217-
ls
218-
echo pwd
219216
chmod +x .github/generate_changelog.sh
217+
source .github/generate_changelog.sh
220218
221219
# Generate the changelog and store it in the GITHUB_ENV
222220
echo "CHANGELOG<<EOF" >> $GITHUB_ENV
223221
if [ -n "${{ env.PREV_TAG }}" ]; then
224-
.github/generate_changelog.sh "${{ env.PREV_TAG }}" >> $GITHUB_ENV
222+
generate_categorized_changelog "${{ env.PREV_TAG }}" >> $GITHUB_ENV
225223
else
226-
.github/generate_changelog.sh >> $GITHUB_ENV
224+
generate_categorized_changelog >> $GITHUB_ENV
227225
fi
228226
echo "EOF" >> $GITHUB_ENV
229227

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "python-template"
3-
version = "0.5.32"
3+
version = "0.5.33"
44
description = "Used to templatize python projects."
55
authors = ["Loïc Motheu <lmotheu@gmail.com>"]
66
readme = "README.md"

0 commit comments

Comments
 (0)