You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The purpose of this repo was to make the main repository the source of version control for the wiki, instead of a separate repository (with very different security and UI). Given that the history is preserved in the main repository, it might be worth considering a simpler, more destructive strategy for deploying the wiki.
This is somewhat inspired by instructions for manually deploying to gh-pages in the Vue CLI docs, which is
set -e
npm run build
# or
yarn build
cd dist
git init
git add -A
git commit -m 'deploy'# deploy to gh-pages
git push -f [email protected]:OWNER/REPO.git master:gh-pages
cd -
It might also be worth taking inspiration from peaceiris/actions-gh-pages.
If a strategy option is added, this would be called the orphan strategy.
The text was updated successfully, but these errors were encountered:
The purpose of this repo was to make the main repository the source of version control for the wiki, instead of a separate repository (with very different security and UI). Given that the history is preserved in the main repository, it might be worth considering a simpler, more destructive strategy for deploying the wiki.
This could resolve #72
This is somewhat inspired by instructions for manually deploying to
gh-pages
in the Vue CLI docs, which isIt might also be worth taking inspiration from
peaceiris/actions-gh-pages
.If a
strategy
option is added, this would be called theorphan
strategy.The text was updated successfully, but these errors were encountered: