forked from rraval/git-nomad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJustfile
23 lines (20 loc) · 804 Bytes
/
Justfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
_list:
@just --list
# Bump the version and git commit (does not publish a GitHub release yet)
release:
scripts/release.sh
# Demonstrate all features as an asciinema screencast
record-demo:
@mkdir -p target/
cargo clean
cargo build --release
PATH="$(pwd)/target/release:$PATH" \
asciinema rec \
--cols 120 \
--rows 36 \
--command scripts/demo.sh \
--title "$($(pwd)/target/release/git-nomad --version)" \
--overwrite target/demo.cast
# Upload the recorded demo to asciinema.org
upload-demo:
@scripts/asciinema-upload.sh target/demo.cast