Skip to content

Commit

Permalink
Fix minor typos in create release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
sean0x42 authored Jan 23, 2020
1 parent 4b08488 commit 6cb7887
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/create_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ jobs:
uses: actions/checkout@v1

- name: Install markdown-extract
run: cargo install markdown_extract
run: cargo install markdown-extract

- name: Get release body
run: export RELEASE_BODY=`markdown_extract --ignore-first-heading ${{ github.ref }} CHANGELOG.md`
run: export RELEASE_BODY=`markdown-extract --ignore-first-heading ${{ github.ref }} CHANGELOG.md`

- name: Create release
id: create_release
uses: actions/create_release@v1
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand Down

0 comments on commit 6cb7887

Please sign in to comment.