Skip to content

Commit

Permalink
github: autotag fixed file paths
Browse files Browse the repository at this point in the history
  • Loading branch information
davidh-lambda committed Nov 3, 2023
1 parent d97e3da commit 53cd1cd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/autotag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- name: Extract and Save latest release notes
run: echo $(awk '/-------/{i++}i==1' CHANGELOG.md) > ${{ github.workspace }}-CHANGELOG.md
run: awk '/-------/{i++}i==0' CHANGELOG.md > ${{ github.workspace }}/LATEST_CHANGELOG.md
- name: Show Changelog
run: cat ${{ github.workspace }}-CHANGELOG.md
run: cat ${{ github.workspace }}/LATEST_CHANGELOG.md
- name: Autoadd release Tags
uses: sbrodehl/action-autotag@v2
id: autotag
Expand All @@ -35,4 +35,4 @@ jobs:
with:
tag_name: ${{ steps.autotag.outputs.tagname }}
name: "Shaderunner ${{ steps.autotag.outputs.tagname }}"
body_path: ${{ github.workspace }}-CHANGELOG.md
body_path: ${{ github.workspace }}/LATEST_CHANGELOG.md

0 comments on commit 53cd1cd

Please sign in to comment.