Skip to content

Commit

Permalink
chore: fix another error when automatically generating release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
dangrie158 committed Apr 19, 2024
1 parent fc0174d commit c1dd1e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/version_bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
- name: Create releasenotes
id: releasenotes
run: |
export NEW_VERSION="v$(deno run --allow-read=. --allow-write=. https://deno.land/x/[email protected]/cli.ts --info | grep 'Current version:' | cut -c 23-)"
export NEW_VERSION="v$(deno run --allow-read=. --allow-write=. https://deno.land/x/[email protected]/cli.ts --info | grep 'Current version:' | cut -w -f 3-3)"
echo "NEW_VERSION=${NEW_VERSION}" >> $GITHUB_OUTPUT
deno run --allow-read --allow-write=${{ github.workspace }}/releasenotes.md --allow-env --allow-run=git --allow-sys=uid npm:auto-changelog --ignore-commit-pattern chore: --hide-credit --output ${{ github.workspace }}/releasenotes.md --starting-version ${NEW_VERSION:-0}
Expand Down

0 comments on commit c1dd1e0

Please sign in to comment.