mirror of
https://github.com/mdnice/markdown-resume.git
synced 2025-10-17 16:02:32 +00:00
13 lines
169 B
Bash
Executable File
13 lines
169 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
set -e
|
|
|
|
yarn build
|
|
cd build
|
|
|
|
git init
|
|
git add -A
|
|
git commit -m 'deploy'
|
|
git push -f git@github.com:mdresume/mdresume.github.io.git master:master
|
|
|
|
cd - |