2022-01-01 23:18:50 +00:00
|
|
|
#!/bin/sh
|
|
|
|
m=$(cat ./build_number)
|
|
|
|
echo $m
|
|
|
|
wait 10
|
2022-04-24 13:07:20 +00:00
|
|
|
docker build -t ghcr.io/lucxjo/friends-best:build-$m -t ghcr.io/lucxjo/friends-best:latest .
|
2022-01-01 23:18:50 +00:00
|
|
|
docker push ghcr.io/lucxjo/friends-best:build-$m
|
|
|
|
docker push ghcr.io/lucxjo/friends-best:latest
|
|
|
|
|
|
|
|
echo $((m+1)) > ./build_number
|