Files
setup-julia/docs/release-checklist.md
2019-08-21 16:11:17 +02:00

17 lines
667 B
Markdown

# Release checklist
Version: `1.b.c`
- [x] Create release branch `releases/v1.b.c`
- [x] Unignore `node_modules/` by adding `!` in front in `.gitignore`
- [x] Delete `node_modules/`
- [x] Install production dependencies: `npm install --production`
- [x] Add `node_modules/`: `git add node_modules`
- [x] Commit & push action: `git commit -a -m "Publish v1.b.c."`, then `git push`
- [x] Test the action with an example package
- [x] Create tags
- [x] `v1.b.c` pointing at the last commit in `releases/v1.b.c`
- [x] `latest` pointing at the latest version of the highest major version
- [x] `v1` pointing at the latest `1.x.x` version
- [x] Push tags