mirror of
https://github.com/Azgaar/Fantasy-Map-Generator.git
synced 2025-12-16 17:31:24 +01:00
17 lines
216 B
Bash
17 lines
216 B
Bash
#!/usr/bin/env sh
|
|
|
|
# abort on errors
|
|
set -e
|
|
|
|
npm run build
|
|
|
|
cd dist
|
|
|
|
git init
|
|
git checkout -b master
|
|
git add -A
|
|
git commit -m 'deploy'
|
|
|
|
git push -f git@github.com:Azgaar/Fantasy-Map-Generator.git main:gh-pages
|
|
|
|
cd -
|