10 lines
230 B
Bash
Executable File
10 lines
230 B
Bash
Executable File
#!/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 |