Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 485 Bytes

RELEASE.MD

File metadata and controls

26 lines (21 loc) · 485 Bytes

initial

git --work-tree "dist" checkout --orphan gh-pages
git --work-tree "dist" add --all
git --work-tree "dist" commit -m "Release v1.0.0"
git push -u origin gh-pages

ongoing

npm run build
git symbolic-ref HEAD refs/heads/gh-pages
git --work-tree "dist" reset --mixed --quiet
git --work-tree "dist" add --all
git commit -m "Release vX.X.X"
git push --quiet origin gh-pages

go back

git symbolic-ref HEAD refs/heads/master
git reset --mixed