Files
own-workspace/deploy.sh
T
2022-08-01 23:32:30 +02:00

14 lines
167 B
Bash
Executable File

#!/usr/bin/env bash
set -e
npm run build
cd dist
git init
git add -A
git commit -m 'deploy'
git push -f git@github.com:remisaurel/todoapp.git master:gh-pages
cd -