Ideas for Versioning a Digital Publication #448
Replies: 1 comment
-
Hi @daniel-keller, interesting question, and I'm intrigued by the idea of publishing multiple editions. Here's what we currently do at Getty ... During the development process, we use different branches for main each phase of work, and then create a versioned GitHub Release when each phase is complete. So, the
Then for deploying our publications we use Netlify, which is hooked into our GitHub repo for any given Quire project and builds and deploys the site automatically with every push. They also have a great feature that allows you to deploy from multiple branches in the same repo. So, we end up with a URL for each of our development branches ( One final note, Netlify recently changed its pricing structure and this made it untenable for Getty to continue hosting Quire books with them due to the overall size of our GitHub org. So we'll be changing our deploy methods soon, but I'd still recommend checking out Netlify, we've been really happy with them. |
Beta Was this translation helpful? Give feedback.
-
Hi everyone!
I'm interested in learning how other museums have handle versioning their digital publications. Is it common practice to use semantic versioning like with any other software? Do you mirror conventions used when versioning a physical publication? Or should a combination of both be used where code releases (which may happen more frequently then a publication revision) don't have a one-to-one correlation with editions (e.g. 1.0.0-ed.1, 1.0.1-ed.1, 1.1.0-ed.1, 2.0.0-ed.2, 2.1.0-ed.2, etc.).
I'm also looking into the best way to deploy multiple editions of a publication. We use github pages for our clowes catalog deployment but given the size of our catalog (~3GB) deployment takes ages and sometimes exceeds github's timeout. I'm thinking deploying more than one build (edition) of the catalog to the same repo probably won't work. I could setup different repos for each edition but that doesn't scale well once I get beyond more than a few publications each with multiple editions.
Beta Was this translation helpful? Give feedback.
All reactions