mirror of
https://github.com/LucasVbr/own-workspace.git
synced 2026-05-14 01:31:58 +00:00
14 lines
167 B
Bash
Executable File
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 - |