Skip to content

Commit

Permalink
remove file name, line number, add v in version
Browse files Browse the repository at this point in the history
  • Loading branch information
ok-nick committed Jul 29, 2022
1 parent e029974 commit 2b954a3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,16 +46,16 @@ jobs:
- name: Get description
run: |
DESCRIPTION=`rg '###\s(.(?!##\s|\[Unreleased\]))+' CHANGELOG.md --pcre2 --multiline --multiline-dotall --max-count 1 CHANGELOG.md`
DESCRIPTION=`rg '###\s(.(?!##\s|\[Unreleased\]))+' CHANGELOG.md --pcre2 --multiline --multiline-dotall --max-count 1 --no-filename --no-line-number`
echo "DESCRIPTION<<EOF" >> $GITHUB_ENV
echo "$DESCRIPTION" >> $GITHUB_ENV
echo "EOF" >> $GITHUB_ENV
- name: Release
uses: softprops/action-gh-release@v1
with:
name: ${{ env.VERSION }}
tag_name: ${{ env.VERSION }}
name: v${{ env.VERSION }}
tag_name: v${{ env.VERSION }}
body: ${{ env.DESCRIPTION }}
files: |
bin/LayoutUtil.rbxm
Expand Down

0 comments on commit 2b954a3

Please sign in to comment.