Skip to content

Commit a049e01

Browse files
authored
add a demo-update generation workflow step to let us know when we have broken demo generation (#444)
Signed-off-by: Jordan Keister <[email protected]>
1 parent 3423804 commit a049e01

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/demo.yaml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: demo
2+
3+
on:
4+
workflow_dispatch:
5+
merge_group:
6+
pull_request:
7+
push:
8+
branches:
9+
- main
10+
11+
jobs:
12+
demo:
13+
runs-on: ubuntu-latest
14+
env:
15+
TERM: linux
16+
steps:
17+
- run: sudo apt update && sudo apt install -y asciinema curl
18+
- uses: actions/checkout@v4
19+
- uses: actions/setup-go@v5
20+
with:
21+
go-version-file: "go.mod"
22+
- run: make demo-update

0 commit comments

Comments
 (0)