Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
hnez committed Aug 20, 2024
1 parent 152f243 commit dbe3efa
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,17 @@ jobs:
if not ln.startswith(PREFIX):
continue
path = ln.removeprefix(PREFIX)
content = open(path).read()
log_path = ln.removeprefix(PREFIX)
print("$ cat", path)
print("---")
print(ln)
print("---")
print(log_path)
print("---")
content = open(log_path).read()
print("$ cat", log_path)
print(content)
- name: Persist the disk image
env:
Expand Down

0 comments on commit dbe3efa

Please sign in to comment.