Skip to content

Commit

Permalink
Fix invalid ${{ github.workflow }} in readme.md (#127)
Browse files Browse the repository at this point in the history
  • Loading branch information
sergey-s-betke committed Jul 26, 2021
1 parent 5e6fc64 commit f5d1357
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -146,12 +146,12 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: Generate Changelog
run: echo "# Good things have arrived" > ${{ github.workflow }}-CHANGELOG.txt
run: echo "# Good things have arrived" > ${{ github.workspace }}-CHANGELOG.txt
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
body_path: ${{ github.workflow }}-CHANGELOG.txt
body_path: ${{ github.workspace }}-CHANGELOG.txt
env:
GITHUB_REPOSITORY: my_gh_org/my_gh_repo
```
Expand Down

0 comments on commit f5d1357

Please sign in to comment.