From 960c1f45cafbf57057643540f98012fbd712bc81 Mon Sep 17 00:00:00 2001 From: Sascha Mann Date: Tue, 31 Dec 2019 11:08:25 +0100 Subject: [PATCH] Delete release checklist No longer needed, the bash script `bin/build-release` covers all of this. --- docs/release-checklist.md | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 docs/release-checklist.md diff --git a/docs/release-checklist.md b/docs/release-checklist.md deleted file mode 100644 index cb09020..0000000 --- a/docs/release-checklist.md +++ /dev/null @@ -1,16 +0,0 @@ -# Release checklist - -Version: `1.b.c` - -- [ ] Create release branch `releases/v1.b.c` - - [ ] Unignore `node_modules/` by adding `!` in front in `.gitignore` - - [ ] Delete `node_modules/` - - [ ] Install production dependencies: `npm install --production` - - [ ] Add `node_modules/`: `git add node_modules` - - [ ] Commit & push action: `git commit -a -m "Publish v1.b.c."`, then `git push` -- [ ] Test the action with an example package -- [ ] Create tags - - [ ] `v1.b.c` pointing at the last commit in `releases/v1.b.c` - - [ ] `latest` pointing at the latest version of the highest major version - - [ ] `v1` pointing at the latest `1.x.x` version -- [ ] Push tags