Skip to content

Commit

Permalink
build: fix release script to work with OOT build dir
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentbernat committed Nov 11, 2022
1 parent 62364b8 commit b373cd6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
CC: ${{ matrix.compiler }}
- name: Generate release body
if: matrix.release
run: cd build && ../tests/ci/release.sh > ../release.md
run: ./tests/ci/release.sh build > ./release.md
- name: Upload release tarball
uses: actions/upload-artifact@v3
if: matrix.release
Expand Down
2 changes: 1 addition & 1 deletion tests/ci/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ echo "## Summary"
sed -n '2,/^$/p' NEWS

echo "## Changelog"
sed -n '3,/^$/p' ChangeLog
sed -n '3,/^$/p' ${1:-.}/ChangeLog

0 comments on commit b373cd6

Please sign in to comment.