1
1
mirror of https://github.com/varkor/quiver.git synced 2024-09-11 05:46:13 +03:00

Switch to q.uiver.app domain

This commit is contained in:
varkor 2020-11-13 01:55:49 +00:00
parent c4f625eabb
commit 45e0dea831

View File

@ -80,9 +80,11 @@ gh-pages:
# Push to the remote `gh-pages` branch.
git push --force
# GitHub Pages will not rebuild in response to a force push, so we have to add a dummy commit to
# force a rebuild.
git commit -m 'Rebuild GitHub Pages' --allow-empty
# Set the CNAME. It is convenient to do so here, because GitHub Pages will not rebuild in
# response to a force push, so we have to push a commit to force a rebuild.
printf "q.uiver.app" > CNAME
git add CNAME
git commit -m 'Create CNAME'
git push
# Navigate back to the main working tree.