17 lines
346 B
Bash
17 lines
346 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
rm -rf workarea
|
||
|
mkdir workarea
|
||
|
git clone https://github.com/rusefi/rusefi.github.io.git workarea/pages
|
||
|
|
||
|
mv pinouts/ workarea/pages/
|
||
|
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
|