Skip to content

Commit 09a8c4b

Browse files
fix(ci): Fix demo-update command by sanitize env for asciinema upload
Change script that generates demo to cleanup envvars to avoid issue faced in the CI to upload the records.
1 parent 543f099 commit 09a8c4b

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/catalogd-demo.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,10 @@ jobs:
2020
with:
2121
go-version-file: "go.mod"
2222
- name: Run Demo Update
23-
run: make demo-update
23+
run: |
24+
env -i \
25+
HOME="$HOME" \
26+
PATH="$PATH" \
27+
SHELL="/bin/bash" \
28+
make demo-update
2429

0 commit comments

Comments
 (0)