From f5d13571ca067a9b79849c5851527db539b265ad Mon Sep 17 00:00:00 2001 From: "Sergey S. Betke" Date: Mon, 26 Jul 2021 19:59:56 +0300 Subject: [PATCH] Fix invalid ${{ github.workflow }} in readme.md (#127) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 32188e3..a431b03 100644 --- a/README.md +++ b/README.md @@ -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 ```