Skip to content

Commit 2fd60b8

Browse files
committed
feat: test statements for script
1 parent 6116ad3 commit 2fd60b8

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/ci_check_release.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -213,14 +213,17 @@ jobs:
213213
id: changelog
214214
run: |
215215
# Make the script executable
216-
chmod +x ../generate_changelog.sh
216+
pwd
217+
ls
218+
echo pwd
219+
chmod +x .github/generate_changelog.sh
217220
218221
# Generate the changelog and store it in the GITHUB_ENV
219222
echo "CHANGELOG<<EOF" >> $GITHUB_ENV
220223
if [ -n "${{ env.PREV_TAG }}" ]; then
221-
../generate_changelog.sh "${{ env.PREV_TAG }}" >> $GITHUB_ENV
224+
.github/generate_changelog.sh "${{ env.PREV_TAG }}" >> $GITHUB_ENV
222225
else
223-
../generate_changelog.sh >> $GITHUB_ENV
226+
.github/generate_changelog.sh >> $GITHUB_ENV
224227
fi
225228
echo "EOF" >> $GITHUB_ENV
226229

0 commit comments

Comments
 (0)