See the best posts from any Bluesky account
0
fork

Configure Feed

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

Export GIT_SHA in deploy.sh so compose interpolates it

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

+1 -1
+1 -1
deploy.sh
··· 6 6 echo "Pulling latest code..." 7 7 git pull origin main 8 8 9 - GIT_SHA=$(git rev-parse --short HEAD) 9 + export GIT_SHA=$(git rev-parse --short HEAD) 10 10 echo "Building image (${GIT_SHA})..." 11 11 docker build --build-arg GIT_SHA="${GIT_SHA}" -t favs-blue:latest -t "favs-blue:${GIT_SHA}" . 12 12