Skip to content

Commit 69de856

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 69de856

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/catalogd-demo.yaml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,13 @@ jobs:
1919
- uses: actions/setup-go@v5
2020
with:
2121
go-version-file: "go.mod"
22-
- name: Run Demo Update
23-
run: make demo-update
22+
- name: Run demo
23+
run: |
24+
env -i \
25+
HOME="$HOME" \
26+
PATH="$PATH" \
27+
TERM="xterm-256color" \
28+
SHELL="/bin/bash" \
29+
PWD="$PWD" \
30+
make demo-update
2431

0 commit comments

Comments
 (0)