10 lines
230 B
Bash
10 lines
230 B
Bash
|
|
#!/usr/bin/zsh
|
||
|
|
|
||
|
|
# Git actions
|
||
|
|
git add .
|
||
|
|
git commit -m "$(date +%Y-%m-%d)"
|
||
|
|
git push origin main
|
||
|
|
|
||
|
|
# Docker actions
|
||
|
|
docker build . -t git.gengo.tech/nuff/nise-circleguard:latest
|
||
|
|
docker push git.gengo.tech/nuff/nise-circleguard:latest
|