We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
branches
1 parent 4963633 commit ee4d267Copy full SHA for ee4d267
.github/workflows/update.yml
@@ -1,8 +1,6 @@
1
name: Update docs and demo
2
on:
3
push:
4
- branches:
5
- - '**'
6
paths-ignore:
7
- 'README.md'
8
- 'demo/snake.com'
@@ -21,7 +19,8 @@ jobs:
21
19
steps:
22
20
- uses: actions/checkout@v4
23
- run: |
24
- sudo apt-get install qrencode nasm python3 -y > /dev/null
+ sudo apt-get update
+ sudo apt-get install qrencode nasm python3 -y --no-install-recommends > /dev/null
25
nasm snake.asm -o demo/snake.com
26
gcc -Os -w -xc - <<< "main;"
27
xxd -p demo/snake.com | python3 docs/update.py
0 commit comments