8000 Try to fix issue with GIT 2.29.0 · rufdev/arduino-esp32@be4d3b6 · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit be4d3b6

Browse files
authored
Try to fix issue with GIT 2.29.0
1 parent 60606e5 commit be4d3b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/scripts/on-release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ fi
330330
if [ ! -z "$COMMITS_SINCE_RELEASE" ] && [ "$COMMITS_SINCE_RELEASE" != "null" ]; then
331331
echo "Getting commits since $COMMITS_SINCE_RELEASE ..."
332332
commitFile=$OUTPUT_DIR/commits.txt
333-
git -C "$GITHUB_WORKSPACE" log --oneline "$COMMITS_SINCE_RELEASE.." > "$OUTPUT_DIR/commits.txt"
333+
git -C "$GITHUB_WORKSPACE" log --oneline "$COMMITS_SINCE_RELEASE..HEAD" > "$OUTPUT_DIR/commits.txt"
334334
releaseNotes+=$'\r\n##### Commits\r\n'
335335
IFS=$'\n'
336336
for next in `cat $commitFile`

0 commit comments

Comments
 (0)
0