Skip to content

Commit

Permalink
docs: correct log upload paths.
Browse files Browse the repository at this point in the history
SInce the build directory is `builddir/` it should be
`builddir/meson-logs/testlog.txt` to be uploaded.
  • Loading branch information
Flameeyes authored and eli-schwartz committed Mar 25, 2021
1 parent 54767ab commit 56c03e1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/markdown/Continuous-Integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ jobs:
if: failure()
with:
name: Linux_Meson_Testlog
path: build/meson-logs/testlog.txt
path: builddir/meson-logs/testlog.txt
macos:
runs-on: macos-latest
Expand All @@ -257,7 +257,7 @@ jobs:
if: failure()
with:
name: MacOS_Meson_Testlog
path: build/meson-logs/testlog.txt
path: builddir/meson-logs/testlog.txt
windows:
runs-on: windows-latest
Expand All @@ -275,5 +275,5 @@ jobs:
if: failure()
with:
name: Windows_Meson_Testlog
path: build/meson-logs/testlog.txt
path: builddir/meson-logs/testlog.txt
```

0 comments on commit 56c03e1

Please sign in to comment.