Skip to content

Commit 02fa296

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

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/catalogd-demo.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,11 @@ 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+
TERM="xterm-256color" \
28+
SHELL="/bin/bash" \
29+
make demo-update
2430

0 commit comments

Comments
 (0)