Skip to content

Commit

Permalink
v0.1.4d
Browse files Browse the repository at this point in the history
  • Loading branch information
YeonV authored Nov 17, 2020
1 parent 8f9824b commit ac68072
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,7 @@ jobs:
uses: actions/checkout@v2
- name: Get commit-messages
id: get_messages
run: |
git log --pretty=format:"%s" $(git describe --tags --abbrev=0 @^)..@ >> /tmp/messages.txt; cat /tmp/messages.txt >> $description
echo "::set-output name=description::$description"
run: echo "MESSAGES=$(git log --pretty=format:"%s" $(git describe --tags --abbrev=0 @^)..@ )" >> $GITHUB_ENV
- name: Create Release
id: create_release
uses: actions/create-release@v1
Expand All @@ -27,6 +25,6 @@ jobs:
tag_name: ${{ github.event.head_commit.message }}
release_name: ${{ github.event.head_commit.message }}
body: |
${{ steps.get_messages.outputs.description }}
${{ env.MESSAGES }}
draft: false
prerelease: false

0 comments on commit ac68072

Please sign in to comment.