Skip to content

Commit

Permalink
fix: release name
Browse files Browse the repository at this point in the history
  • Loading branch information
FllipEis authored Oct 15, 2024
1 parent 407b661 commit 762b0fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/bundle-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
COMMIT_HASH=$(git rev-parse --short HEAD)
# Get the count of releases for the current year and week
RELEASE_COUNT=$(gh release list --limit 1000 | grep "^${YEAR}.${WEEK}" | wc -l)
RELEASE_COUNT=$(gh release list --limit 1000 | grep "^v${YEAR}.${WEEK}" | wc -l)
RELEASE_COUNT=$((RELEASE_COUNT + 1))
RELEASE_NAME="${YEAR}.${WEEK}.${RELEASE_COUNT}.dev-${COMMIT_HASH}"
Expand Down

0 comments on commit 762b0fd

Please sign in to comment.