Skip to content

Commit

Permalink
fix: this project uses a v
Browse files Browse the repository at this point in the history
  • Loading branch information
zostay committed Jun 14, 2024
1 parent 309779f commit 02eaf59
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/prepare.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ jobs:
run: |
date=$(date "+%Y-%m-%d")
header=$(head -n1 Changes.md)
if [ "$header" != "## $RELEASE_VERSION $date" ]; then
if [ "$header" != "## v$RELEASE_VERSION $date" ]; then
echo "Changes.md is out of date!"
echo "Expected header: ## $RELEASE_VERSION $date"
echo "Expected header: ## v$RELEASE_VERSION $date"
echo "Found header: $header"
exit 1
else
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ jobs:
run: |
date=$(date "+%Y-%m-%d")
header=$(head -n1 Changes.md)
if [ "$header" != "## $RELEASE_VERSION $date" ]; then
if [ "$header" != "## v$RELEASE_VERSION $date" ]; then
echo "Changes.md is out of date!"
echo "Expected header: ## $RELEASE_VERSION $date"
echo "Expected header: ## v$RELEASE_VERSION $date"
echo "Found header: $header"
exit 1
else
Expand Down

0 comments on commit 02eaf59

Please sign in to comment.