-
Notifications
You must be signed in to change notification settings - Fork 8
Manual Publication Workflow
Blake Walsh edited this page Jul 20, 2020
·
5 revisions
It is straightforward to manually publish texts. I will demonstrate how to to so by publishing some root texts.
- first we need to know the file or folder path which we will publish, I will use root/pli/ms
root/pli/ms
- navigate the bilara-data repo (i.e. bilara/repo)
- checkout the published branch
- make sure it's up to date
- create a new branch from it, in this case I will use publish-pali
git checkout published
git pull
git checkout -b publish-pali
- checkout the files to-be-published from the unpublished branch (uses the path from earlier)
- create a commit containing the checked out files
- push the branch to github
git checkout unpublished root/pli/ms
git commit -a -m "Publishing the main pali texts"
git push -u origin publish-pali
- Go to github.com
- Create a Pull Request, from publish-pali to published - get the branches right!
- Once the pull request has been accepted, the texts are in the published branch!