Skip to content

Commit 6e8418f

Browse files
committed
chore: adapt path of release drafter
1 parent 126aca5 commit 6e8418f

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/ci_check_release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ jobs:
203203
id: release_notes
204204
uses: release-drafter/release-drafter@v6
205205
with:
206-
config-name: release-drafter.yml # Update this path
206+
config-name: ./release-drafter.yml # Update this path
207207
version: ${{ env.VERSION }}
208208
tag: ${{ env.VERSION }}
209209
disable-releaser: true
@@ -215,10 +215,10 @@ jobs:
215215
- name: Debug Release Drafter
216216
if: env.CREATE_RELEASE == 'true'
217217
run: |
218-
echo "Configuration path: release-drafter.yml"
219-
if [ -f "release-drafter.yml" ]; then
218+
echo "Configuration path: ./release-drafter.yml"
219+
if [ -f "./release-drafter.yml" ]; then
220220
echo "Configuration file exists"
221-
cat release-drafter.yml
221+
cat ./release-drafter.yml
222222
else
223223
echo "Configuration file not found"
224224
find . -name "release-drafter.yml"

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.20"
3+
version = "0.5.21"
44
description = "Used to templatize python projects."
55
authors = ["Loïc Motheu <lmotheu@gmail.com>"]
66
readme = "README.md"

0 commit comments

Comments
 (0)