mirror of
https://github.com/go2coding/CatwalkGlimpse-AISelections.git
synced 2024-11-25 16:25:32 +08:00
16 lines
274 B
Bash
Executable File
16 lines
274 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd /home/ubuntu/fine_tuning/CatwalkGlimpse-AISelections
|
|
git config --global user.name "go2coding"
|
|
|
|
git pull
|
|
|
|
python3 Scraper.py
|
|
python3 FindNew.py
|
|
python3 SendMail.py
|
|
|
|
git add ./
|
|
today=$(date +%Y%m%d)
|
|
git commit -m "${today} new update"
|
|
git push -u origin main
|