Skip to content

Commit

Permalink
chore: avoid color in output of version
Browse files Browse the repository at this point in the history
  • Loading branch information
dangrie158 committed Apr 19, 2024
1 parent 14fb751 commit bdb0b49
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 -s -d' ' -f3)"
export NEW_VERSION="v$(NO_COLOR=1 deno run --allow-read=. --allow-write=. https://deno.land/x/[email protected]/cli.ts --info | grep 'Current version:' | cut -s -d' ' -f3)"
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 bdb0b49

Please sign in to comment.