mirror of
https://github.com/systemd/systemd.git
synced 2024-11-04 13:51:24 +03:00
c3e270f4ee
It turns out Jekyll (the engine behind GitHub Pages) requires that pages include a "Front Matter" snippet of YAML at the top for proper rendering. Omitting it will still render the pages, but including it opens up new possibilities, such as using a {% for %} loop to generate index.md instead of requiring a separate script. I'm hoping this will also fix the issue with some of the pages (notably CODE_OF_CONDUCT.html) not being available under systemd.io Tested locally by rendering the website with Jekyll. Before this change, the *.md files were kept unchanged (so not sure how that even works?!), after this commit, proper *.html files were generated from it.
17 lines
629 B
Markdown
17 lines
629 B
Markdown
---
|
|
title: Steps to a Successful Release
|
|
---
|
|
|
|
# Steps to a Successful Release
|
|
|
|
1. Add all items to NEWS
|
|
2. Update the contributors list in NEWS ("make git-contrib")
|
|
3. Update the time and place in NEWS
|
|
4. Update version in configure.ac and library numbers in Makefile.am
|
|
5. Check that "make distcheck" works
|
|
6. Tag the release ("make git-tag")
|
|
7. Upload the documentation ("make doc-sync")
|
|
8. Close the github milestone and open a new one (https://github.com/systemd/systemd/milestones)
|
|
9. Send announcement to systemd-devel, with a copy&paste from NEWS
|
|
10. Update IRC topic ("/msg chanserv TOPIC #systemd Version NNN released")
|