deploy.sh (view raw)
1#!/usr/bin/env bash 2 3# build, because i never do 4vite build 5 6git push origin master 7# push contents of `build/` to the `gh-pages` branch 8git subtree push --prefix build origin gh-pages