-
Notifications
You must be signed in to change notification settings - Fork 37
Manual publication workflow
sujato edited this page Mar 3, 2021
·
3 revisions
It is straightforward to manually publish texts. I will demonstrate how to do 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 to the bilara-data 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-root-pli-ms
git checkout published
git pull
git checkout -b publish-root-pli-ms
- 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 Mahasangiti Pali texts"
git push -u origin publish-root-pli-ms
- Go to github.com
- Create a Pull Request, from
publish-root-pli-ms
topublished
- get the branches right!
- Once the pull request has been accepted, the texts are in the
published
branch!
To manually unpublish something, delete it from the published branch.