junetanglesite june.tngl.io
0

Configure Feed

Select the types of activity you want to include in your feed.

just: use both hash and change id for deployment

author
june
date (Jul 6, 2026, 6:44 PM +0200) commit b2314abc parent 18e0404c change-id wzpwqxxt
+2 -1
+2 -1
justfile
··· 1 1 rev := shell("git rev-parse HEAD") 2 + cid := shell("jj show -r @- -T change_id --no-patch") 2 3 3 4 build: 4 5 @just clean ··· 19 20 git ls-files -z | xargs -0 rm -f 20 21 mv build/* . 21 22 git add . 22 - git commit -m "$(echo -ne 'build: deploy\n\nrev: {{rev}}')" 23 + git commit -m "$(echo -ne 'build: deploy\n\ncommit: {{rev}}\nchange-id: {{cid}}')" 23 24 git push --force origin build 24 25 git checkout '{{rev}}' 25 26