2021-10-13 18:25:29 -07:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
rm -rf workarea
|
|
|
|
mkdir workarea
|
|
|
|
git clone https://github.com/rusefi/rusefi.github.io.git workarea/pages
|
|
|
|
|
2021-10-13 18:27:22 -07:00
|
|
|
mv -u pinouts/ workarea/pages/
|
2021-10-13 18:25:29 -07:00
|
|
|
cd workarea/pages/
|
|
|
|
git add *
|
|
|
|
git status
|
|
|
|
|
|
|
|
git config --local user.email "action@github.com"
|
|
|
|
git config --local user.name "GitHub build-firmware Action"
|
|
|
|
|
|
|
|
git commit -m 'pinouts'
|
|
|
|
git push
|